Open JoeKun opened 3 years ago
Since Python 3.7, async and await have become reserved keyword, which can't be used in the names of modules, parameters, or methods.
async
await
So replace previous usage of async in gateone with asynchronous, and await with block_await.
asynchronous
block_await
This fixes issue #730: gateone.async import issue.
Since Python 3.7,
async
andawait
have become reserved keyword, which can't be used in the names of modules, parameters, or methods.So replace previous usage of
async
in gateone withasynchronous
, andawait
withblock_await
.This fixes issue #730: gateone.async import issue.