How to stop Sphinx automethod prefixing method name with class name
Add this line in your conf.py
file
add_module_names = False
In addition to
add_module_names = False
use
.. autofunction:: my_module.MyClass.my_method
instead of automodule
and the class name is omitted in the generated doc.