From 6fcea2ba8ae1f2135b1e572f9de4ed1a55c5a0f0 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Wed, 2 Jun 2021 23:52:15 +0200 Subject: [PATCH] Fixed import order --- advlabdb/__init__.py | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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"]