Skip to content

Commit c02177e

Browse files
committed
Remove now unnecessary type: ignore comment
Signed-off-by: Leandro Lucarella <luca-frequenz@llucax.com>
1 parent 7d0abe8 commit c02177e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/timeseries/test_moving_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ async def test_access_window_by_ts_slice() -> None:
212212
await push_logical_meter_data(sender, range(0, 5))
213213
time_start = UNIX_EPOCH + timedelta(seconds=3)
214214
time_end = time_start + timedelta(seconds=2)
215-
assert np.array_equal(window[time_start:time_end], np.array([3.0, 4.0])) # type: ignore
215+
assert np.array_equal(window[time_start:time_end], np.array([3.0, 4.0]))
216216
assert np.array_equal(window.window(dt(3), dt(5)), np.array([3.0, 4.0]))
217217
assert np.array_equal(window.window(dt(3), dt(3)), np.array([]))
218218
# Window also supports slicing with indices outside allowed range

0 commit comments

Comments
 (0)