Skip to content

Commit c90c4ae

Browse files
lockdown disallow_untyped_decorators
1 parent 7e24cc1 commit c90c4ae

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

pandas/core/arrays/categorical.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# mypy: allow_untyped_decorators
2+
13
import operator
24
from shutil import get_terminal_size
35
import textwrap

pandas/core/indexes/interval.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# mypy: allow_untyped_decorators
2+
13
""" define the IntervalIndex """
24
from operator import le, lt
35
import textwrap

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ warn_unused_configs = True
139139
# disallow_untyped_defs = True
140140
# disallow_incomplete_defs = True
141141
check_untyped_defs = True
142-
# disallow_untyped_decorators = True
142+
disallow_untyped_decorators = True
143143
no_implicit_optional = True
144144
warn_redundant_casts = True
145145
warn_unused_ignores = True

0 commit comments

Comments
 (0)