Python Sphinx autodoc and decorated members
I had the same problem with the celery @task decorator. You can also fix this in your case by adding the correct function signature to your rst file, like this: .. autoclass:: Bus :members: .. automethod:: open(self) .. automethod:: some_other_method(self, param1, param2) It will still document the non-decorator members automatically. This is mentioned in the … Read more