Skip to content

Commit

Permalink
style: remove unused exception variable
Browse files Browse the repository at this point in the history
Co-Authored-By: Chris Weaver <chris@onyx.app>
  • Loading branch information
devin-ai-integration[bot] and Chris Weaver committed Jan 30, 2025
1 parent 3d90b79 commit 66f59b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/tests/unit/onyx/db/test_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _call_parallel(engine, email_list: List[str]) -> None:
session = SessionLocal()
try:
batch_add_ext_perm_user_if_not_exists(session, email_list)
except Exception as e:
except Exception:
session.rollback()
raise
finally:
Expand Down

0 comments on commit 66f59b0

Please sign in to comment.