Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 20, 2024
1 parent 970bd10 commit 9454c28
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Tests/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def convert_to_comparable(
return new_a, new_b


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

0 comments on commit 9454c28

Please sign in to comment.