Skip to content

Commit

Permalink
remove unnecessary excepts
Browse files Browse the repository at this point in the history
  • Loading branch information
toddsifleet committed Mar 8, 2024
1 parent feb40ee commit 88d6c3b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions dobles/pytest_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,9 @@
def pytest_runtest_call(item):
try:
outcome = yield
except Exception as e:
raise e
finally:
try:
verify()
except Exception as e:
raise e
finally:
teardown()

Expand Down

0 comments on commit 88d6c3b

Please sign in to comment.