Skip to content

Commit d65029c

Browse files
committed
make mypy happy
1 parent 5cf5ddf commit d65029c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/arrays/datetimelike.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
Callable,
1212
Literal,
1313
Sequence,
14+
Tuple,
1415
TypeVar,
1516
Union,
1617
cast,
@@ -1840,7 +1841,7 @@ def validate_inclusiveness(inclusive):
18401841
------
18411842
ValueError : if argument is not among valid values
18421843
"""
1843-
left_right_inclusive: tuple[bool, bool] | None = {
1844+
left_right_inclusive: Tuple[bool, bool] | None = {
18441845
"both": (True, True),
18451846
"left": (True, False),
18461847
"right": (False, True),

0 commit comments

Comments
 (0)