Skip to content

Commit 9454c28

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 970bd10 commit 9454c28

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Tests/helper.py

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

6868

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

0 commit comments

Comments
 (0)