From 274577a48622f5106a57d61fa603fc8f6fb6cba4 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Mon, 6 Jan 2025 00:11:48 -0500 Subject: [PATCH] chore: remove old commented out code (#513) --- a_sync/primitives/queue.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/a_sync/primitives/queue.py b/a_sync/primitives/queue.py index e86b1429..0474e041 100644 --- a/a_sync/primitives/queue.py +++ b/a_sync/primitives/queue.py @@ -328,13 +328,6 @@ def __init__( self._no_futs = not return_data """Indicates whether tasks will return data via futures.""" - # @wraps(func) - # async def _worker_coro() -> NoReturn: - # """Worker coroutine for processing tasks.""" - # return await self._worker_coro() - - # self._worker_coro = wraps(func)(self._worker_coro) - # NOTE: asyncio defines both this and __str__ def __repr__(self) -> str: """