While playing with the example code for RPC, I got the following warning that it was using a deprecated feature.
rpc_server.py:3: DeprecationWarning: aiormq.types was deprecated and will be removed in one of next major releases. Use aiormq.abc instead.
import aiormq.types
This PR is simply replacing aiormq.types with aiormq.abc in all examples in the README to avoid this message
While playing with the example code for RPC, I got the following warning that it was using a deprecated feature.
This PR is simply replacing
aiormq.types
withaiormq.abc
in all examples in the README to avoid this message