diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-03-11 18:18:08 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-03-11 18:18:08 +0100 |
commit | 31ca1192969251904917b27ba085bbe1adc8a5d1 (patch) | |
tree | d7741d5d357305628782cbb1d5266500038b8295 | |
parent | dca789e8eb805df4dcf3309599aa136427de5c15 (diff) |
sort imports
-rw-r--r-- | hazwaz/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hazwaz/__init__.py b/hazwaz/__init__.py index 4986238..883ffe2 100644 --- a/hazwaz/__init__.py +++ b/hazwaz/__init__.py @@ -1 +1 @@ -from .command import MainCommand, Command # noqa: F401 +from .command import Command, MainCommand # noqa: F401 @@ -1,4 +1,4 @@ -from setuptools import setup, find_packages +from setuptools import find_packages, setup try: with open("README.rst", 'r') as fp: |