diff options
-rw-r--r-- | snekbox/utils/timed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/utils/timed.py b/snekbox/utils/timed.py index 756b2bc..11d126c 100644 --- a/snekbox/utils/timed.py +++ b/snekbox/utils/timed.py @@ -13,7 +13,7 @@ __all__ = ("time_limit",) @contextmanager def time_limit(timeout: int | None = None) -> Generator[None, None, None]: """ - Decorator to call a function with a time limit. Uses SIGALRM, requires a UNIX system. + Decorator to call a function with a time limit. Args: timeout: Timeout limit in seconds. |