Skip to content

Commit

Permalink
Fix unreachable-code
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Jul 6, 2024
1 parent f4d9c10 commit 31d1954
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 @@ -769,7 +769,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 31d1954

Please sign in to comment.