Skip to content

Commit

Permalink
Update dlt/common/data_writers/buffered.py
Browse files Browse the repository at this point in the history
Co-authored-by: Willi Müller <[email protected]>
  • Loading branch information
rudolfix and willi-mueller authored Sep 3, 2024
1 parent e69e7fa commit 6852bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/common/data_writers/buffered.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def write_data_item(self, item: TDataItems, columns: TTableSchemaColumns) -> int
new_rows_count = sum(tbl.num_rows for tbl in item)
else:
new_rows_count = len(item)
# items coming in single list will be written together, not matter how many are there
# items coming in a single list will be written together, no matter how many there are
self._buffered_items.extend(item)
else:
self._buffered_items.append(item)
Expand Down

0 comments on commit 6852bbf

Please sign in to comment.