bpo-46278: fix typo introduced in GH-30427 (GH-30430)

Automerge-Triggered-By: GH:asvetlov
This commit is contained in:
Kumar Aditya 2022-01-06 18:51:24 +05:30 committed by GitHub
parent e028ae99ec
commit b50e5e916a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -258,12 +258,12 @@ class AbstractEventLoop:
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):