Skip to content

Commit

Permalink
Update database_creator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-nicoli committed Mar 4, 2024
1 parent 43b0fdf commit e8ab43f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion TEMOA-Italy/database_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,8 @@
conn.executescript(sql_code.read())
conn.commit()
conn.close()
print("{:>62}".format('SQLite database simplified.'))
print("{:>62}".format('SQLite database simplified.'))

conn = sqlite3.connect(sqlite_database)
conn.execute("VACUUM")
conn.close()

0 comments on commit e8ab43f

Please sign in to comment.