Skip to content

Commit 691ae31

Browse files
committed
Fix typo in CABI code
1 parent fef4107 commit 691ae31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

design/mvp/CanonicalABI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ class AsyncTask(Task):
706706
async def wait(self):
707707
if self.state == AsyncCallState.STARTING:
708708
self.inst.may_enter_async = False
709-
self.inst.unblock_next_pending = False
709+
self.unblock_next_pending = False
710710
else:
711711
self.maybe_unblock_next_pending()
712712
return await super().wait()

design/mvp/canonical-abi/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ async def enter(self):
531531
async def wait(self):
532532
if self.state == AsyncCallState.STARTING:
533533
self.inst.may_enter_async = False
534-
self.inst.unblock_next_pending = False
534+
self.unblock_next_pending = False
535535
else:
536536
self.maybe_unblock_next_pending()
537537
return await super().wait()

0 commit comments

Comments
 (0)