Skip to content

Commit

Permalink
Update Sphinx configuration to exclude imported members and adjust me…
Browse files Browse the repository at this point in the history
…mber order; remove GitHubClient class documentation
  • Loading branch information
Dave Arnold committed May 1, 2025
1 parent 1cfdb1f commit 3f587ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
5 changes: 5 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@
'undoc-members': True,
'show-inheritance': True,
'special-members': '__init__',
'imported-members': False, # Don't document imported members
}

# Don't document imported members in app module
autodoc_mock_imports = ['github']
autodoc_member_order = 'bysource'

# Napoleon settings for Google-style docstrings
napoleon_google_docstring = True
napoleon_numpy_docstring = False
Expand Down
8 changes: 0 additions & 8 deletions docs/source/modules/github_client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,4 @@ GitHub Client
:members:
:undoc-members:
:show-inheritance:

GitHubClient Class
----------------

.. autoclass:: template_automation.app.GitHubClient
:members:
:undoc-members:
:show-inheritance:
:special-members: __init__

0 comments on commit 3f587ea

Please sign in to comment.