Skip to content

Commit

Permalink
TRACK-289: Fixing syntax error (#2448)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ckoelewyn authored Nov 22, 2024
1 parent 3e7b941 commit 9bd0a87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epictrack-api/src/api/services/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -1137,8 +1137,8 @@ def _process_actions(cls, event: Event, outcome_id: int = None) -> None:
.join(Action, Action.id == ActionConfiguration.action_id)
.filter(
ActionConfiguration.outcome_configuration_id == outcome_id,
ActionConfiguration.is_active is True,
ActionConfiguration.is_deleted is False
ActionConfiguration.is_active.is_(True),
ActionConfiguration.is_deleted.is_(False)
)
.order_by(ActionConfiguration.sort_order)
.all()
Expand Down

0 comments on commit 9bd0a87

Please sign in to comment.