diff --git a/scripts/deploy/github/kfp-readiness/wait_for_pods.py b/scripts/deploy/github/kfp-readiness/wait_for_pods.py index 3f755efb0e1..2a83d88c788 100644 --- a/scripts/deploy/github/kfp-readiness/wait_for_pods.py +++ b/scripts/deploy/github/kfp-readiness/wait_for_pods.py @@ -43,7 +43,7 @@ def get_pod_statuses(): def all_pods_ready(statuses): return all(pod_status == 'Running' and ready == total - for pod_status, ready, total in statuses.values()) + for pod_status, ready, total, _ in statuses.values()) def check_pods(calm_time=10, timeout=600, retries_after_ready=5):