Skip to content

Commit 21d8115

Browse files
committed
Remove needless type annotations
1 parent 30cbdfe commit 21d8115

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/frame/common.py

-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717

1818
class DictWrapper(Mapping):
19-
_dict: dict
20-
2119
def __init__(self, d: dict) -> None:
2220
self._dict = d
2321

@@ -32,8 +30,6 @@ def __len__(self):
3230

3331

3432
class ListWrapper(Sequence):
35-
_list: list
36-
3733
def __init__(self, lst: list) -> None:
3834
self._list = lst
3935

0 commit comments

Comments
 (0)