From b680e1a1de733765da1cbba15676bb1565ae5d4b Mon Sep 17 00:00:00 2001 From: Charles Frye Date: Tue, 26 Mar 2024 17:28:39 +0000 Subject: [PATCH] loosen time limit on processpool --- internal/typecheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/typecheck.py b/internal/typecheck.py index 82ce48f2f..c9d7a5b78 100644 --- a/internal/typecheck.py +++ b/internal/typecheck.py @@ -66,7 +66,7 @@ def main() -> int: future_to_path[future] = pth for future in concurrent.futures.as_completed( - future_to_path, timeout=30 + future_to_path, timeout=60 ): pth = future_to_path[future] try: