Skip to content

Commit aeedfc4

Browse files
committed
Tuple -> tuple
1 parent d65029c commit aeedfc4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/core/arrays/datetimelike.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
Callable,
1212
Literal,
1313
Sequence,
14-
Tuple,
1514
TypeVar,
1615
Union,
1716
cast,
@@ -1841,7 +1840,7 @@ def validate_inclusiveness(inclusive):
18411840
------
18421841
ValueError : if argument is not among valid values
18431842
"""
1844-
left_right_inclusive: Tuple[bool, bool] | None = {
1843+
left_right_inclusive: tuple[bool, bool] | None = {
18451844
"both": (True, True),
18461845
"left": (True, False),
18471846
"right": (False, True),

0 commit comments

Comments
 (0)