From 6aaf4acd1baaa531511a28b74d81cf919e4e0517 Mon Sep 17 00:00:00 2001 From: Daniel Ohayon Date: Mon, 2 Jun 2025 18:52:23 -0700 Subject: [PATCH] update pyre nightly version (#1076) Summary: Pyre signal is failing on github because the nightly version that we're pinned to is no longer available in pip Differential Revision: D75791451 --- .pyre_configuration | 2 +- scripts/kfpint.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.pyre_configuration b/.pyre_configuration index 919cd176c..486453f6e 100644 --- a/.pyre_configuration +++ b/.pyre_configuration @@ -18,5 +18,5 @@ "stubs" ], "strict": true, - "version": "0.0.101732536891" + "version": "0.0.101748862749" } diff --git a/scripts/kfpint.py b/scripts/kfpint.py index dd9cc6eac..8b775b6aa 100755 --- a/scripts/kfpint.py +++ b/scripts/kfpint.py @@ -208,9 +208,7 @@ def run_pipeline(build: BuildInfo, pipeline_file: str) -> object: return resp -def wait_for_pipeline( - resp: Any, # pyre-fixme: KFP doesn't have a response type -) -> None: +def wait_for_pipeline(resp: Any) -> None: # pyre-ignore[2] print(f"{resp.run_id} - waiting for completion") result = resp.wait_for_run_completion( timeout=1 * 60 * 60,