There was an error while loading. Please reload this page.
1 parent da8a5bb commit 62ed538Copy full SHA for 62ed538
2 files changed
mypy.ini
@@ -32,14 +32,6 @@ check_untyped_defs=True
32
# No incremental mode
33
cache_dir=/dev/null
34
35
-[mypy-aiohttp.*]
36
-follow_imports=skip
37
-
38
[mypy-black_primer.*]
39
# Until we're not supporting 3.6 primer needs this
40
disallow_any_generics=False
41
42
-[mypy-black]
43
-# The following is because of `patch_click()`. Remove when
44
-# we drop Python 3.6 support.
45
-warn_unused_ignores=False
src/black/__init__.py
@@ -1287,7 +1287,7 @@ def patch_click() -> None:
1287
"""
1288
try:
1289
from click import core
1290
- from click import _unicodefun # type: ignore
+ from click import _unicodefun
1291
except ModuleNotFoundError:
1292
return
1293
0 commit comments