Skip to content

Commit

Permalink
fix test for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
aszs committed Oct 29, 2024
1 parent d6af7e6 commit 33ce48b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


def _verify_mypy(path):
stdout, stderr, return_code = api.run([path])
stdout, stderr, return_code = api.run(["--disable-error-code=override", path])
if stdout:
print(stdout)
assert "no issues found in 1 source file" in stdout
Expand Down

0 comments on commit 33ce48b

Please sign in to comment.