From 47ff7dfc3148f896fbe5c9c0c1db73139f2cd89d Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 20 May 2021 16:54:38 +0200 Subject: [PATCH] Removed unused module Removed import of time module from Job.py --- classes/Job.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/classes/Job.py b/classes/Job.py index 4bf1a20..15c94bf 100644 --- a/classes/Job.py +++ b/classes/Job.py @@ -1,5 +1,3 @@ -import time - # Data type translation lookup table datatypes = { "object": "TEXT", @@ -117,4 +115,4 @@ def run(self): self.create_columns() print("Inserting rows..") stats = self.insert_rows() - print(f"Inserted {stats['rows']} rows into {self.db.table}") \ No newline at end of file + print(f"Inserted {stats['rows']} rows into {self.db.table}")