Skip to content

Commit 4b80365

Browse files
committed
Expand docblock
1 parent 55967e8 commit 4b80365

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/crawlee/_utils/time.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ def measure_time() -> Iterator[TimerResult]:
3939

4040

4141
class SharedTimeout:
42-
"""Keeps track of a time budget shared by multiple independent async operations."""
42+
"""Keeps track of a time budget shared by multiple independent async operations.
43+
44+
Provides a reusable, non-reentrant context manager interface.
45+
"""
4346

4447
def __init__(self, timeout: timedelta) -> None:
4548
self._remaining_timeout = timeout

0 commit comments

Comments
 (0)