Skip to content

Commit b50e5e9

Browse files
bpo-46278: fix typo introduced in GH-30427 (GH-30430)
Automerge-Triggered-By: GH:asvetlov
1 parent e028ae9 commit b50e5e9

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
@@ -258,12 +258,12 @@ def _timer_handle_cancelled(self, handle):
258258
raise NotImplementedError
259259

260260
def call_soon(self, callback, *args, context=None):
261-
return self.call_later(0, callback, *args)
261+
return self.call_later(0, callback, *args, context=context)
262262

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

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

269269
def time(self):

0 commit comments

Comments
 (0)