When I use Sphinx autodoc to document a class, the values for the attributes are always reported, (as it says it should here, under #437) but always as "= None"
Attribute = None
Some Documentation
I include it like
.. autoclass:: core.SomeClass
:members:
And my code looks like
class SomeClass(object):
def __init__(self):
self.attribute = "value" #: Some Documentation
Is there a way to either make the "= None" report the real value, or make it disappear?