Skip to content

Commit ebc6925

Browse files
committed
mypy fixup
1 parent a18ecd2 commit ebc6925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/dtypes/test_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1609,7 +1609,7 @@ def test_is_interval_array_subclass(self):
16091609
# GH#46945
16101610

16111611
class TimestampsInterval(Interval):
1612-
def __init__(self, left: str, right: str, closed: str = "both") -> None:
1612+
def __init__(self, left: str, right: str, closed="both") -> None:
16131613
super().__init__(Timestamp(left), Timestamp(right), closed)
16141614

16151615
@property

0 commit comments

Comments
 (0)