Skip to content

Commit

Permalink
Fix unreachable-code
Browse files Browse the repository at this point in the history
(cherry picked from commit 314e08b)
  • Loading branch information
jacobtylerwalls committed Jul 9, 2024
1 parent a35821a commit 76be7ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ def test_module_base_props(self) -> None:
with self.assertRaises(StatementMissing):
with pytest.warns(DeprecationWarning) as records:
self.assertEqual(module.statement(future=True), module)
assert len(records) == 1
assert len(records) == 1
with self.assertRaises(StatementMissing):
module.statement()

Expand Down

0 comments on commit 76be7ea

Please sign in to comment.