Skip to content

Commit f3be1be

Browse files
committed
style: condense _requests_in_progress docstring to one line
1 parent 5421ff0 commit f3be1be

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/apify/storage_clients/_apify/_request_queue_shared_client.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,7 @@ def __init__(
7474
"""Local cache of request IDs from the request queue head for efficient fetching."""
7575

7676
self._requests_in_progress = set[str]()
77-
"""Set of request IDs currently handed to a consumer of this client and not yet handled or reclaimed.
78-
79-
Tracked locally so a request is never handed to a second consumer in this process, even if its platform
80-
lock lapses and the queue head re-lists it.
81-
"""
77+
"""Request IDs handed to a consumer and not yet handled or reclaimed, tracked to avoid double-handing."""
8278

8379
self._requests_cache: LRUCache[str, CachedRequest] = LRUCache(maxsize=cache_size)
8480
"""LRU cache storing request objects, keyed by request ID."""

0 commit comments

Comments
 (0)