File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ class AsyncTask(Task):
706
706
async def wait (self ):
707
707
if self .state == AsyncCallState.STARTING :
708
708
self .inst.may_enter_async = False
709
- self .inst. unblock_next_pending = False
709
+ self .unblock_next_pending = False
710
710
else :
711
711
self .maybe_unblock_next_pending()
712
712
return await super ().wait()
Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ async def enter(self):
531
531
async def wait (self ):
532
532
if self .state == AsyncCallState .STARTING :
533
533
self .inst .may_enter_async = False
534
- self .inst . unblock_next_pending = False
534
+ self .unblock_next_pending = False
535
535
else :
536
536
self .maybe_unblock_next_pending ()
537
537
return await super ().wait ()
You can’t perform that action at this time.
0 commit comments