Skip to content

Commit

Permalink
Removed unused module
Browse files Browse the repository at this point in the history
Removed import of time module from Job.py
  • Loading branch information
VictorWesterlund authored May 20, 2021
1 parent 248943c commit 47ff7df
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions classes/Job.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import time

# Data type translation lookup table
datatypes = {
"object": "TEXT",
Expand Down Expand Up @@ -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}")
print(f"Inserted {stats['rows']} rows into {self.db.table}")

0 comments on commit 47ff7df

Please sign in to comment.