From 3d0fdcc7a0cfc36d220c345c30492bef257c403e Mon Sep 17 00:00:00 2001 From: Code Quality Bot Date: Sun, 2 Aug 2026 08:26:05 -0700 Subject: [PATCH] PYRE_MISSING_ANNOTATIONS in pipeline_builder_test.py (#1605) Summary: Pull Request resolved: https://github.com/facebookresearch/spdl/pull/1605 Reviewed By: frbng Differential Revision: D114079068 --- tests/pipeline/pipeline_builder_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pipeline/pipeline_builder_test.py b/tests/pipeline/pipeline_builder_test.py index 042216dc4..354296c2a 100644 --- a/tests/pipeline/pipeline_builder_test.py +++ b/tests/pipeline/pipeline_builder_test.py @@ -444,7 +444,7 @@ async def test(): def test_async_pipe_concurrency(self) -> None: """Changing concurrency changes the number of items fetched and processed.""" - async def delay(val): + async def delay(val: int) -> int: await asyncio.sleep(0.5) return val