Skip to content

Commit fb3760b

Browse files
stewjbclaude
andcommitted
Fix: move type: ignore comment to continuation line to fix line-too-long (131/120)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c91fd1a commit fb3760b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spotfire/test/test_sbdf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -900,8 +900,8 @@ def _all_dtypes_pandas_df():
900900
dt(1583, 1, 2, 0, 0, 0)], dtype="datetime64[ms]"),
901901
"date_col": [d(2020, 1, 1), None, d(1969, 7, 20), d(2024, 12, 31), d(1583, 1, 2)],
902902
"time_col": [t(12, 0, 0), t(0, 0, 0), None, t(23, 59, 59), t(6, 30)],
903-
"duration_col": pd.array([td(days=1), td(seconds=30), td(days=-1), pd.NaT, td(hours=2)], # type: ignore[call-overload]
904-
dtype="timedelta64[ms]"),
903+
"duration_col": pd.array([td(days=1), td(seconds=30), td(days=-1), pd.NaT, td(hours=2)],
904+
dtype="timedelta64[ms]"), # type: ignore[call-overload]
905905
"string_col": ["hello", "world", "foo", "bar", None],
906906
"binary_col": [None, b"\x00\x01", b"\xff", b"", b"\xde\xad"],
907907
})

0 commit comments

Comments
 (0)