forked from platypush/platypush
Use inherited-members: true in autodoc_default_options to ensure documentation of inherited actions
This commit is contained in:
parent
adb9672989
commit
ea3b49a17f
2 changed files with 7 additions and 1 deletions
|
@ -195,6 +195,10 @@ intersphinx_mapping = {'https://docs.python.org/': None}
|
|||
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
||||
todo_include_todos = True
|
||||
|
||||
autodoc_default_options = {
|
||||
'inherited-members': True,
|
||||
}
|
||||
|
||||
autodoc_mock_imports = ['googlesamples.assistant.grpc.audio_helpers',
|
||||
'google.assistant.embedded',
|
||||
'google.assistant.library',
|
||||
|
|
|
@ -20,7 +20,9 @@ class JSONAble(ABC):
|
|||
|
||||
|
||||
class Message(object):
|
||||
""" Message generic class """
|
||||
"""
|
||||
Message generic class
|
||||
"""
|
||||
|
||||
class Encoder(json.JSONEncoder):
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in a new issue