diff --git a/tests/test_io.py b/tests/test_io.py index 1e622f5e..534c09c6 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -1,6 +1,5 @@ from __future__ import annotations -import random from pathlib import Path import awkward as ak @@ -163,10 +162,10 @@ def f(a, b): dak.from_map(f, [1, 2], [3, 4, 5]) with pytest.raises(ValueError, match="must be `callable`"): - dak.from_map(5, [1], [2]) # type: ignore + dak.from_map(5, [1], [2]) with pytest.raises(ValueError, match="must be Iterable"): - dak.from_map(f, 1, [1, 2]) # type: ignore + dak.from_map(f, 1, [1, 2]) with pytest.raises(ValueError, match="non-zero length"): dak.from_map(f, [], [], [])