We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ce4ee commit f2ba138Copy full SHA for f2ba138
abr-testing/abr_testing/data_collection/abr_robot_error.py
@@ -252,7 +252,7 @@ def get_error_runs_from_robot(ip: str) -> List[str]:
252
f"http://{ip}:31950/runs", headers={"opentrons-version": "3"}
253
)
254
run_data = response.json()
255
- run_list = run_data["data"]
+ run_list = run_data.get("data", [])
256
for run in run_list:
257
run_id = run["id"]
258
num_of_errors = len(run["errors"])
0 commit comments