Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit 0388fca

Browse files
committed
Remove debug
1 parent 3a1ac54 commit 0388fca

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

modules/BatchDataLoader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def write_data_frame_to_table(self, data_frame):
4747
qualified_target_table = "{0}.{1}".format(self.target_schema, self.target_table)
4848
self.logger.debug("Starting write to table {0}".format(qualified_target_table))
4949
data = StringIO()
50-
print(data_frame)
5150
data_frame.to_csv(data, header=False, index=False, na_rep='', float_format='%.16g')
5251
# Float_format is used to truncate any insignificant digits. Unfortunately it gives us an artificial limitation
5352

0 commit comments

Comments
 (0)