Skip to content

Commit

Permalink
remove bad append
Browse files Browse the repository at this point in the history
  • Loading branch information
KaylaSeeley committed Dec 1, 2024
1 parent b88387d commit d98463a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/plugins/events_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def flow_init(
# process every event in events
for event in self.attributes["events"]:
processed_event = self.process_event_name(event)
self.triggers.append("processed event", processed_event)
self.triggers.append(processed_event)
elif callable(self.attributes["events"]) and not isinstance(
self.attributes["events"], DeployTimeField
):
Expand Down

0 comments on commit d98463a

Please sign in to comment.