Skip to content

Commit

Permalink
Merge pull request #231 from person142/unused-mypy-ignores
Browse files Browse the repository at this point in the history
Remove unused mypy ignores
  • Loading branch information
hameerabbasi committed Mar 23, 2020
2 parents 49394a2 + e95a4b2 commit 059dade
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion uarray/mypy.ini → mypy.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[mypy]
python_version = 3.7
ignore_missing_imports = True
warn_redundant_casts = True
warn_unused_ignores = True
2 changes: 1 addition & 1 deletion uarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
"""

from ._backend import *
from ._version import get_versions # type: ignore
from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions
4 changes: 2 additions & 2 deletions uarray/_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import types
import inspect
import functools
from . import _uarray # type: ignore
import copyreg # type: ignore
from . import _uarray
import copyreg
import atexit
import pickle
import contextlib
Expand Down

0 comments on commit 059dade

Please sign in to comment.