Skip to content

Commit 2076e34

Browse files
committed
Disabled flake8 F401 for __version__ import
1 parent 2912e07 commit 2076e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pact/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
from .matchers import EachLike, SomethingLike, Term
44
from .pact import Pact
55
from .provider import Provider
6-
from .__version__ import __version__
6+
from .__version__ import __version__ # noqa: F401
77

88
__all__ = ('Consumer', 'EachLike', 'Pact', 'Provider', 'SomethingLike', 'Term')

0 commit comments

Comments
 (0)