Skip to content

Commit 325eced

Browse files
committed
Remove unnecessary logging
1 parent c207d69 commit 325eced

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

ingestors/tabular/ods.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def ingest(self, file_path, entity):
7878
# in the middle of processing.
7979
# See https://github.com/alephdata/ingest-file/issues/171
8080
self.manager.emit_entity(table, fragment="initial")
81-
log.debug("Sheet: %s", name)
8281
self.emit_row_tuples(table, self.generate_csv(sheet))
8382
if table.has("csvHash"):
8483
self.manager.emit_entity(table)

ingestors/tabular/xlsx.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def ingest(self, file_path, entity):
6464
# in the middle of processing.
6565
# See https://github.com/alephdata/ingest-file/issues/171
6666
self.manager.emit_entity(table, fragment="initial")
67-
log.debug("Sheet: %s", name)
6867
self.emit_row_tuples(table, self.generate_rows(sheet))
6968
if table.has("csvHash"):
7069
self.manager.emit_entity(table)

tests/test_tabular.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ def test_metadata_inheritance(self):
5858
fixture_path, entity = self.fixture("staff_list.xlsx")
5959
self.manager.ingest(fixture_path, entity)
6060
table_entities = self.get_emitted("Table")
61-
import pprint
62-
63-
pprint.pprint([x.to_dict() for x in table_entities])
6461
parent_entity = self.get_emitted("Workbook").pop()
6562
self.assertEqual(len(table_entities), 3)
6663

0 commit comments

Comments
 (0)