Skip to content

Commit 6d51ea7

Browse files
vaibhavhrtjreback
authored andcommitted
Type annotation pandas/compat/pickle compat.py (#25991)
1 parent 70773d9 commit 6d51ea7

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

mypy.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ ignore_errors=True
1111
[mypy-pandas.compat.numpy.function]
1212
ignore_errors=True
1313

14-
[mypy-pandas.compat.pickle_compat]
15-
ignore_errors=True
16-
1714
[mypy-pandas.core.accessor]
1815
ignore_errors=True
1916

pandas/compat/pickle_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def load_reduce(self):
138138
# our Unpickler sub-class to override methods and some dispatcher
139139
# functions for compat
140140

141-
class Unpickler(pkl._Unpickler):
141+
class Unpickler(pkl._Unpickler): # type: ignore
142142

143143
def find_class(self, module, name):
144144
# override superclass

0 commit comments

Comments
 (0)