Skip to content

Commit 861a9aa

Browse files
bpo-46278: fix typo introduced in GH-30427 (GH-30430) (GH-30431)
Automerge-Triggered-By: GH:asvetlov (cherry picked from commit b50e5e9) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
1 parent 8670fbe commit 861a9aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/asyncio/events.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -259,12 +259,12 @@ def _timer_handle_cancelled(self, handle):
259259
raise NotImplementedError
260260

261261
def call_soon(self, callback, *args, context=None):
262-
return self.call_later(0, callback, *args)
262+
return self.call_later(0, callback, *args, context=context)
263263

264264
def call_later(self, delay, callback, *args, context=None):
265265
raise NotImplementedError
266266

267-
def call_at(self, when, callback, *args, cotext=None):
267+
def call_at(self, when, callback, *args, context=None):
268268
raise NotImplementedError
269269

270270
def time(self):

0 commit comments

Comments
 (0)