Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
drGrove committed Jun 29, 2019
1 parent 9828a78 commit 7a1a475
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mtls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

from pkg_resources import get_distribution, DistributionNotFound

from .cli import cli
from .mtls import MutualTLS

__author__ = "Danny Grove <danny@drgrovellc.com>"

# Allows "import mtls" and "from mtls import <name>".
Expand All @@ -15,3 +12,6 @@
__version__ = get_distribution(__name__).version
except DistributionNotFound:
__version__ = "dev"

from .cli import cli # noqa
from .mtls import MutualTLS # noqa

0 comments on commit 7a1a475

Please sign in to comment.