diff --git a/advlabdb/__init__.py b/advlabdb/__init__.py index 71b7352..17ade04 100644 --- a/advlabdb/__init__.py +++ b/advlabdb/__init__.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index f2df1e0..b52f7c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,3 +29,4 @@ line-length = 120 [tool.isort] profile = "black" +skip = ["__init__.py"]