Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Aug 9, 2023
1 parent c97f25a commit 715c39a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions async_timeout/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

if sys.version_info >= (3, 11):

def _uncancel_task(task: asyncio.Task[object]) -> None:
def _uncancel_task(task: "asyncio.Task[object]") -> None:
task.uncancel()

else:

def _uncancel_task(task: asyncio.Task[object]) -> None:
def _uncancel_task(task: "asyncio.Task[object]") -> None:
pass


Expand Down

0 comments on commit 715c39a

Please sign in to comment.