Skip to content

Commit

Permalink
Fixed test failure on Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Jul 27, 2024
1 parent 76a6895 commit b6d1fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apscheduler/_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ._structures import TaskDefaults
from ._utils import UnsetValue, unset

T = TypeVar("T", bound=Callable[..., Any])
T = TypeVar("T", bound="Callable[..., Any]")

TASK_PARAMETERS_KEY = "_apscheduler_taskdef"

Expand Down

0 comments on commit b6d1fb8

Please sign in to comment.