mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 01:24:17 +00:00
config: fix missing automembers in sphinx upgrade
This setting was renamed and should now be a dictionary. Fixes https://github.com/pybricks/pybricks-api/issues/45
This commit is contained in:
+4
-1
@@ -130,7 +130,10 @@ nitpick_ignore = [
|
||||
# -- Autodoc options ------------------------------------------------------
|
||||
|
||||
autodoc_member_order = 'bysource'
|
||||
autodoc_default_flags = ['members', 'undoc-members']
|
||||
autodoc_default_options = {
|
||||
'members': True,
|
||||
'undoc-members': True,
|
||||
}
|
||||
autoclass_content = 'both' # This ensures init arguments are not ignored
|
||||
add_module_names = False # Hide module name
|
||||
|
||||
|
||||
Reference in New Issue
Block a user