We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c385d commit ebe53b4Copy full SHA for ebe53b4
1 file changed
examples/automations.py
@@ -79,8 +79,8 @@
79
run_id = runs["data"][0]["id"]
80
run: resend.AutomationRun = resend.Automations.Runs.get(automation_id, run_id)
81
print(f"Run status: {run['status']}, steps: {len(run['steps'])}")
82
- for step in run["steps"]:
83
- print(f" Step key={step['key']} type={step['type']} status={step['status']}")
+ for run_step in run["steps"]:
+ print(f" Step key={run_step['key']} type={run_step['type']} status={run_step['status']}")
84
85
# --- Multi-step automation: delay + wait_for_event ---
86
print("\n--- Create multi-step automation (delay + wait_for_event) ---")
0 commit comments