Skip to content

Commit

Permalink
Fix mypy linting issues. (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
hameerabbasi committed Feb 26, 2020
1 parent 21c0a8d commit dda8d54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uarray/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

def pytest_cmdline_preparse(args):
try:
import pytest_black
import pytest_black # type: ignore
except ImportError:
pass
else:
args.append("--black")
print("uarray: Enabling pytest-black")

try:
import pytest_mypy
import pytest_mypy # type: ignore
except ImportError:
pass
else:
Expand Down

0 comments on commit dda8d54

Please sign in to comment.