Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
atollk committed Jul 14, 2023
1 parent 1ed46e6 commit 773f853
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def assert_error_at(
col: int,
) -> None:
error_found = any(
report.line == line and report.col == col and report.code == error_code
report.line == line
and report.col == col
and report.code == error_code
for report in reported_errors
)
if not error_found:
Expand Down

0 comments on commit 773f853

Please sign in to comment.