Skip to content

Commit

Permalink
bpo-46278: fix typo introduced in GH-30427 (GH-30430)
Browse files Browse the repository at this point in the history
Automerge-Triggered-By: GH:asvetlov
(cherry picked from commit b50e5e9)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
  • Loading branch information
miss-islington and kumaraditya303 authored Jan 6, 2022
1 parent 0aa8bbf commit cb06831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/asyncio/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ def _timer_handle_cancelled(self, handle):
raise NotImplementedError

def call_soon(self, callback, *args, context=None):
return self.call_later(0, callback, *args)
return self.call_later(0, callback, *args, context=context)

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

def call_at(self, when, callback, *args, cotext=None):
def call_at(self, when, callback, *args, context=None):
raise NotImplementedError

def time(self):
Expand Down

0 comments on commit cb06831

Please sign in to comment.