Skip to content

Commit

Permalink
Fix type completeness
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibo-Joshi committed Dec 29, 2023
1 parent f74f301 commit 26131c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telegram/ext/_jobqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def __init__(self) -> None:

self._application: Optional[weakref.ReferenceType[Application]] = None
self._executor = AsyncIOExecutor()
self.scheduler: AsyncIOScheduler = AsyncIOScheduler(**self.scheduler_configuration)
self.scheduler: "AsyncIOScheduler" = AsyncIOScheduler(**self.scheduler_configuration)

def __repr__(self) -> str:
"""Give a string representation of the JobQueue in the form ``JobQueue[application=...]``.
Expand Down

0 comments on commit 26131c8

Please sign in to comment.