Skip to content

Commit

Permalink
fix get_signal_filter args (#5376)
Browse files Browse the repository at this point in the history
Co-authored-by: Alicia Matsumoto <[email protected]>
Co-authored-by: Marc Vilanova <[email protected]>
  • Loading branch information
3 people authored Oct 22, 2024
1 parent 63ae820 commit 295a60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/signal/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def update_filter(
signal_filter_in: SignalFilterUpdate,
):
"""Updates an existing signal filter."""
signal_filter = get_signal_filter(db_session=db_session, signal_id=signal_filter_id)
signal_filter = get_signal_filter(db_session=db_session, signal_filter_id=signal_filter_id)
if not signal_filter:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
Expand Down

0 comments on commit 295a60f

Please sign in to comment.