Skip to content

Commit f06c37c

Browse files
committed
Remove needless type annotations
1 parent e810a7e commit f06c37c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/frame/common.py

Lines changed: 0 additions & 4 deletions
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)