Skip to content

Commit

Permalink
Fixed flake8 (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfrowe committed May 21, 2020
1 parent 4d5dc39 commit 87a5f22
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ commands = python -m pytest {posargs}

[testenv:flake8]
deps = flake8
commands = flake8 typeguard.py tests
commands = flake8 typeguard tests
skip_install = true
5 changes: 0 additions & 5 deletions typeguard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@
except ImportError:
Literal = TypedDict = None

try:
from typing import Protocol
except ImportError:
from typing import _Protocol as Protocol

try:
from typing import AsyncGenerator
except ImportError:
Expand Down

0 comments on commit 87a5f22

Please sign in to comment.