Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
Diaoul committed Sep 19, 2021
1 parent 151f6e1 commit 5f958a7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import sys

import sphinx_rtd_theme

import spkrepo

# If extensions (or modules to document with autodoc) are in another directory,
Expand Down
1 change: 1 addition & 0 deletions manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
commit,
)
from flask_security.utils import encrypt_password

from spkrepo import create_app
from spkrepo.ext import db
from spkrepo.models import Architecture, Package, user_datastore
Expand Down
1 change: 1 addition & 0 deletions spkrepo/tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from factory.alchemy import SQLAlchemyModelFactory
from flask import current_app, url_for
from flask_testing import TestCase

from spkrepo import create_app
from spkrepo.ext import db
from spkrepo.models import (
Expand Down
1 change: 1 addition & 0 deletions spkrepo/tests/test_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from unittest import TestLoader, TestSuite

from flask import current_app, url_for

from spkrepo.ext import db
from spkrepo.models import Package, Version
from spkrepo.tests.common import (
Expand Down
1 change: 1 addition & 0 deletions spkrepo/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from unittest import TestLoader, TestSuite

from flask import current_app, url_for

from spkrepo.ext import db
from spkrepo.models import Architecture, Build, Firmware, Role
from spkrepo.tests.common import (
Expand Down
1 change: 1 addition & 0 deletions spkrepo/tests/test_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from flask import url_for
from flask_security import url_for_security
from lxml.html import fromstring

from spkrepo.ext import db
from spkrepo.tests.common import BaseTestCase, BuildFactory, UserFactory

Expand Down
1 change: 1 addition & 0 deletions spkrepo/tests/test_nas.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from unittest import TestLoader, TestSuite

from flask import url_for

from spkrepo.ext import db
from spkrepo.models import Architecture, Download, Firmware
from spkrepo.tests.common import (
Expand Down
1 change: 1 addition & 0 deletions spkrepo/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from unittest import TestLoader, TestSuite

from mock import Mock

from spkrepo.exceptions import SPKParseError
from spkrepo.models import Architecture
from spkrepo.tests.common import BaseTestCase, BuildFactory, create_info, create_spk
Expand Down

0 comments on commit 5f958a7

Please sign in to comment.