diff options
author | Ella Väisänen <evaisane@local> | 2023-12-03 14:54:51 +0200 |
---|---|---|
committer | Ella Väisänen <evaisane@local> | 2023-12-03 14:54:51 +0200 |
commit | 11ee6577a359862875936fd24b41d141b30ad0cf (patch) | |
tree | aa4badf9b776b0d6cb6352ba9bb1aa5be26bf364 /app.py | |
parent | 477410a6c033a0cbd8b07fae123a1e9386488ba6 (diff) |
Just cleaning up. Unused imports and commanted code.
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -1,7 +1,6 @@ from secrets import token_hex from flask import Flask from os import getenv -#from db_actions import db app = Flask(__name__, static_url_path='') @@ -18,11 +17,8 @@ else: from db.db import DB D = DB() -#db.init_app(app) - import routes.base import routes.answer import routes.create import routes.analyse import routes.question - |