Skip to content

Commit

Permalink
refactored logging
Browse files Browse the repository at this point in the history
  • Loading branch information
blublinsky committed Jun 15, 2024
1 parent 38a0532 commit b87abe9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def transform_binary(self, file_name: str, byte_array: bytes) -> tuple[list[tupl
self.logger.warning(f"table is empty, skipping processing")
return [], {"skipped empty tables": 1}
# transform table
out_tables, stats = self.transform(data=table, file_name=file_name)
out_tables, stats = self.transform(table=table, file_name=file_name)
# Add number of rows to stats
stats = stats | {"source_doc_count": table.num_rows}
# convert tables to files
Expand Down

0 comments on commit b87abe9

Please sign in to comment.