Skip to content

Commit

Permalink
chore(clippy): Fix clippy lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lquerel committed Nov 5, 2024
1 parent 156f0a1 commit a305e22
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/model/table_data_insert_all_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,8 @@ impl TableDataInsertAllRequestGzipped {
pub fn len(&self) -> usize {
self.data.len()
}

pub fn is_empty(&self) -> bool {
self.data.is_empty()
}
}

0 comments on commit a305e22

Please sign in to comment.