Remove useless TODO

This commit is contained in:
Lucas Verney 2017-08-28 14:20:36 +02:00
parent 4e4c3eadf7
commit 97f92221dc
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def db_init():
""" """
conn = sqlite3.connect("data.db") conn = sqlite3.connect("data.db")
c = conn.cursor() c = conn.cursor()
# TODO: Init tables # Init tables
c.execute("CREATE TABLE IF NOT EXISTS stations(" + c.execute("CREATE TABLE IF NOT EXISTS stations(" +
"id INTEGER PRIMARY KEY, " + "id INTEGER PRIMARY KEY, " +
"name TEXT, " + "name TEXT, " +