removed logging

This commit is contained in:
fatz 2019-06-03 17:58:34 +02:00
parent 89f5d5c30a
commit 580c6951da
1 changed files with 0 additions and 1 deletions

View File

@ -38,7 +38,6 @@ def load_ods(doc, sheet, headers=True, columns=None):
for j, cell in enumerate(row):
if j < len(col_index):
# use header instead of column index
print(cell.value)
df_dict[col_index[j]].append(cell.value)
else:
continue