fix(app): Fix import_name for flask application

This commit is contained in:
Ferdinand Thiessen 2022-02-21 21:02:45 +01:00
parent 760ee9fe36
commit e82d830410
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ def install_all():
def create_app(test_config=None):
app = Flask(__name__)
app = Flask("flaschengeist")
app.json_encoder = CustomJSONEncoder
CORS(app)