Skip to content

Commit

Permalink
fix: sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
xenophonf committed Nov 30, 2023
1 parent 4ff8b52 commit 3d920d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
# <https://www.gnu.org/licenses/>.

import logging
import pkg_resources
import pkgutil

import pkg_resources

__app_name__ = __name__
__version__ = pkg_resources.require(__app_name__)[0].version

Expand Down
8 changes: 4 additions & 4 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
# License along with this program. If not, see
# <https://www.gnu.org/licenses/>.

from . import __app_name__
from . import __path__
from flask import Blueprint
from flask import Flask
import importlib
import logging
import pkgutil

from flask import Blueprint, Flask

from . import __app_name__, __path__

# configure module-level logging
logger = logging.getLogger(__name__)

Expand Down
3 changes: 2 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
# License along with this program. If not, see
# <https://www.gnu.org/licenses/>.

from flask import Blueprint
import logging

from flask import Blueprint

# configure module-level logging
logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 3d920d5

Please sign in to comment.