You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the report. This line executes the handlers that are registered for an action. Handlers can be both regular functions as well as async functions. E.g.:
response = await asyncio.coroutine(handler)(**snake_case_payload) makes sure that that both version can be executed.
You state correctly that asyncio.coroutine is depricated. Therefore I think we should replace it with:
I'm seeing this warning on Python 3.8:
Is there any reason not to convert the associated methods to
async def
?The text was updated successfully, but these errors were encountered: