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
I believe this is because the autodoc generator is configured to ONLY include functions where there is a docstring. Thats fine if you have docstrings for everything but internal functions, but that's obviously not an accurate description here.
I was trying to figure out how to configure timeouts for a channel. Apparently this is done via
channel.set_qos()
, but that function does not exist in the documentation (https://aio-pika.readthedocs.io/en/latest/apidoc.html#aio_pika.Connection.channel).I believe this is because the autodoc generator is configured to ONLY include functions where there is a docstring. Thats fine if you have docstrings for everything but internal functions, but that's obviously not an accurate description here.
I think this should be as simple as adding
:undoc-members:
to all the classes/module entries in https://github.com/mosquito/aio-pika/blob/master/docs/source/apidoc.rst.The text was updated successfully, but these errors were encountered: