Style with Black

This commit is contained in:
Michał Gdula 2023-05-16 18:01:59 +03:00
parent 27bf6f64ef
commit 7b86a6b6bb
3 changed files with 25 additions and 15 deletions

View file

@ -1,5 +1,6 @@
import os
# Purely to make the code a bit more readable
def env(key):
return os.getenv(key)
@ -7,7 +8,7 @@ def env(key):
SECRET_KEY = env("FLASK_KEY")
SQLALCHEMY_DATABASE_URI = 'sqlite:///site.db'
SQLALCHEMY_DATABASE_URI = "sqlite:///site.db"
MIGRATION_DIR = "/data/storage/migrations"
INSTANCE_DIR = "/data/storage/instance"