Skip to content

Commit 35ee6de

Browse files
committed
Fix variable names
1 parent d4a291b commit 35ee6de

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/sentry/workflow_engine/processors/delayed_workflow.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import logging
44
from collections import defaultdict
5-
from collections.abc import Mapping, Sequence, Iterable
5+
from collections.abc import Iterable, Mapping, Sequence
66
from dataclasses import dataclass
77
from datetime import timedelta
88
from functools import cached_property
@@ -540,9 +540,11 @@ def fire_actions_for_groups(
540540
extra={"group_id": group.id, "event_data": workflow_event_data},
541541
threshold_seconds=1,
542542
):
543-
workflows_actions = evaluate_workflows_action_filters(workflows, event_data)
543+
workflows_actions = evaluate_workflows_action_filters(
544+
workflows, workflow_event_data
545+
)
544546
filtered_actions = filter_recently_fired_workflow_actions(
545-
action_filters | workflows_actions, event_data
547+
action_filters | workflows_actions, workflow_event_data
546548
)
547549
create_workflow_fire_histories(filtered_actions, workflow_event_data)
548550

0 commit comments

Comments
 (0)