Skip to content

Commit c1db704

Browse files
proboscisclaude
andcommitted
Fix mypy error in test_reawaitable_concurrency.py
Add type ignore comment to suppress no-any-return error for await_helper function 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 302e42c commit c1db704

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_primitives/test_reawaitable/test_reawaitable_concurrency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async def sample_coro() -> str:
1414

1515
async def await_helper(awaitable_obj) -> str:
1616
"""Helper to await objects in tasks."""
17-
return await awaitable_obj
17+
return await awaitable_obj # type: ignore[no-any-return]
1818

1919

2020
@pytest.mark.anyio

0 commit comments

Comments
 (0)