Fix bad python import

This commit is contained in:
Paul Bienkowski 2021-11-27 23:03:55 +01:00
parent a7bbc50ac1
commit 40f336336b

View file

@ -186,7 +186,7 @@ def json(*args, **kwargs):
return json_response(*args, **kwargs, dumps=partial(dumps, cls=CustomJsonEncoder))
from routes import (
from .routes import (
info,
login,
stats,
@ -195,7 +195,7 @@ from routes import (
users,
)
from routes import frontend
from .routes import frontend
app.blueprint(api)