Skip to content

Commit 38b1667

Browse files
committed
fixes type annotations
1 parent 5d1d2ca commit 38b1667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3484,8 +3484,8 @@ def select_dtypes(self, include=None, exclude=None):
34843484
keep_these = np.full(self.shape[1], True)
34853485

34863486
def extract_unique_dtypes_from_dtypes_list(
3487-
dtypes_list: List[Type], unique_dtypes: List[Type]
3488-
) -> List[Type]:
3487+
dtypes_list: FrozenSet[Dtype], unique_dtypes: np.ndarray
3488+
) -> List[Dtype]:
34893489
extracted_dtypes = []
34903490
for unique_dtype in unique_dtypes:
34913491
if any(issubclass(unique_dtype.type, dtype) for dtype in dtypes_list):

0 commit comments

Comments
 (0)