From ae1a4cec733ac93881899a24925dfd78461c0cc9 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Sun, 26 Jun 2022 12:18:12 -0500 Subject: [PATCH] bug fix: removing print statements --- transport/disk.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/transport/disk.py b/transport/disk.py index 16e57de..6963694 100644 --- a/transport/disk.py +++ b/transport/disk.py @@ -235,8 +235,6 @@ class SQLiteWriter(SQLite,DiskWriter) : cursor = self.conn.cursor() sql = " " .join(["INSERT INTO ",self.table,"(", ",".join(self.fields) ,")", "values(:values)"]) for row in info : - print (row) - print (row.values()) stream =["".join(["",value,""]) if type(value) == str else value for value in row.values()] stream = json.dumps(stream).replace("[","").replace("]","")