python-zk / kazoo

Kazoo is a high-level Python library that makes it easier to use Apache Zookeeper.
https://kazoo.readthedocs.io
Apache License 2.0
1.3k stars 387 forks source link

fix: Remove use of "async" as a variable #476

Closed tgockel closed 7 years ago

tgockel commented 7 years ago

The use of "async" and "await" as variable are deprecated in Python 3.7. This patch removes the use of "async" (there is no usage of "await" to fix).

Closes #455

jeffwidman commented 7 years ago

Thank you!