Skip to content

Commit

Permalink
Sat, Aug 3, 2024, 9:51 AM +03:00
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdoullahBougataya committed Aug 3, 2024
1 parent 2eb37da commit 2df8853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

for i in range(len(engines)):
cur = con.cursor()
cur.execute(f"INSERT INTO rocket_engines VALUES {(i, ) + engines[i]};".replace("''", "NULL"))
cur.execute(f"INSERT INTO rocket_engines VALUES {(i, ) + engines[i] + images[i]};".replace("''", "NULL"))
con.commit()

print("Table successfully filled")
Expand Down

0 comments on commit 2df8853

Please sign in to comment.