File tree 2 files changed +2
-22
lines changed
2 files changed +2
-22
lines changed Original file line number Diff line number Diff line change 1
1
import gc
2
+ from typing import Optional , Type
2
3
3
4
import numpy as np
4
5
import pytest
30
31
class Base :
31
32
""" base class for index sub-class tests """
32
33
33
- _holder = None
34
+ _holder = None # type: Optional[Type[Index]]
34
35
_compat_props = ["shape" , "ndim" , "size" , "nbytes" ]
35
36
36
37
def test_pickle_compat_construction (self ):
Original file line number Diff line number Diff line change @@ -148,33 +148,12 @@ ignore_errors=True
148
148
[mypy-pandas.tests.extension.json.test_json]
149
149
ignore_errors =True
150
150
151
- [mypy-pandas.tests.indexes.datetimes.test_datetimelike]
152
- ignore_errors =True
153
-
154
- [mypy-pandas.tests.indexes.interval.test_base]
155
- ignore_errors =True
156
-
157
151
[mypy-pandas.tests.indexes.interval.test_interval_tree]
158
152
ignore_errors =True
159
153
160
- [mypy-pandas.tests.indexes.period.test_period]
161
- ignore_errors =True
162
-
163
154
[mypy-pandas.tests.indexes.test_base]
164
155
ignore_errors =True
165
156
166
- [mypy-pandas.tests.indexes.test_category]
167
- ignore_errors =True
168
-
169
- [mypy-pandas.tests.indexes.test_numeric]
170
- ignore_errors =True
171
-
172
- [mypy-pandas.tests.indexes.test_range]
173
- ignore_errors =True
174
-
175
- [mypy-pandas.tests.indexes.timedeltas.test_timedelta]
176
- ignore_errors =True
177
-
178
157
[mypy-pandas.tests.indexing.test_loc]
179
158
ignore_errors =True
180
159
You can’t perform that action at this time.
0 commit comments