diff options
Diffstat (limited to 'src/apscheduler/_retry.py')
-rw-r--r-- | src/apscheduler/_retry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apscheduler/_retry.py b/src/apscheduler/_retry.py index 19cf51b..f05931f 100644 --- a/src/apscheduler/_retry.py +++ b/src/apscheduler/_retry.py @@ -44,7 +44,7 @@ class RetryMixin: retry_settings: RetrySettings = attrs.field(default=RetrySettings()) @property - def _temporary_failure_exceptions(self) -> tuple[type[Exception]]: + def _temporary_failure_exceptions(self) -> tuple[type[Exception], ...]: """ Tuple of exception classes which indicate that the operation should be retried. |