File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -293,6 +293,8 @@ def test_interval_math() -> None:
293293 if TYPE_CHECKING_INVALID_USAGE :
294294 _i = interval_i - pd .Interval (1 , 2 ) # type: ignore[type-var] # pyright: ignore[reportOperatorIssue,reportUnknownVariableType]
295295 _f = interval_f - pd .Interval (1.0 , 2.0 ) # type: ignore[operator] # pyright: ignore[reportOperatorIssue,reportUnknownVariableType]
296+ # TODO: psf/black#4880
297+ # fmt: off
296298 _ts = ( # pyright: ignore[reportOperatorIssue,reportUnknownVariableType]
297299 interval_ts
298300 - pd .Interval ( # type: ignore[operator]
@@ -305,6 +307,7 @@ def test_interval_math() -> None:
305307 pd .Timedelta (1 , "ns" ), pd .Timedelta (2 , "ns" )
306308 )
307309 )
310+ # fmt: on
308311
309312
310313def test_interval_cmp () -> None :
You can’t perform that action at this time.
0 commit comments