Codestyle

This commit is contained in:
Patrick Jentsch
2019-08-22 09:35:23 +02:00
parent 3a6fdaa24b
commit 47ab22c534
2 changed files with 14 additions and 10 deletions

View File

@ -33,7 +33,8 @@ class Config:
class DevelopmentConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'data_dev.sqlite')
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir,
'data_dev.sqlite')
class TestingConfig(Config):