Skip to content

Commit 970bd10

Browse files
radarherehugovk
andauthored
Updated type hint
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent 99d8519 commit 970bd10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tests/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def convert_to_comparable(
6666
return new_a, new_b
6767

6868

69-
def assert_deep_equal(a: Any, b: Any, msg: str | None = None) -> None:
69+
def assert_deep_equal(a: Sequence[Any], b: Sequence[Any], msg: str | None = None) -> None:
7070
try:
7171
assert len(a) == len(b), msg or f"got length {len(a)}, expected {len(b)}"
7272
except Exception:

0 commit comments

Comments
 (0)