1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-17 18:31:15 +00:00

Fixed import order

This commit is contained in:
Mo 2021-06-02 23:52:15 +02:00
parent 418b1f66ac
commit 6fcea2ba8a
2 changed files with 2 additions and 1 deletions

View file

@ -32,4 +32,4 @@ from advlabdb import models
user_datastore = SQLAlchemyUserDatastore(db, models.User, models.Role)
Security(app, user_datastore)
from advlabdb import modelViews, routes
from advlabdb import routes, modelViews

View file

@ -29,3 +29,4 @@ line-length = 120
[tool.isort]
profile = "black"
skip = ["__init__.py"]