Skip to content

Commit 40bb67c

Browse files
committed
Revert "Type"
This reverts commit 5006980.
1 parent 5006980 commit 40bb67c

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

pandas/core/internals/managers.py

+2-15
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,7 @@
22
import itertools
33
import operator
44
import re
5-
from typing import (
6-
DefaultDict,
7-
Dict,
8-
List,
9-
Optional,
10-
Pattern,
11-
Sequence,
12-
Tuple,
13-
TypeVar,
14-
Union,
15-
)
5+
from typing import DefaultDict, Dict, List, Optional, Sequence, Tuple, TypeVar, Union
166
import warnings
177

188
import numpy as np
@@ -1917,10 +1907,7 @@ def _merge_blocks(
19171907

19181908

19191909
def _compare_or_regex_search(
1920-
a: ArrayLike,
1921-
b: Union[Scalar, Pattern],
1922-
regex: bool = False,
1923-
mask: Optional[ArrayLike] = None,
1910+
a: ArrayLike, b: Scalar, regex: bool = False, mask: Optional[ArrayLike] = None
19241911
) -> Union[ArrayLike, bool]:
19251912
"""
19261913
Compare two array_like inputs of the same shape or two scalar values

0 commit comments

Comments
 (0)