mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-27 21:33:11 +00:00
Style with Black
This commit is contained in:
parent
27bf6f64ef
commit
7b86a6b6bb
3 changed files with 25 additions and 15 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue