Skip to content

Commit

Permalink
* refine docs
Browse files Browse the repository at this point in the history
  • Loading branch information
HYLcool committed Oct 16, 2023
1 parent a2bb609 commit 9fa14cb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/sphinx_doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,11 @@
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

def skip(app, what, name, obj, would_skip, options):
if name == "__init__":
return False
return would_skip

def setup(app):
app.connect("autodoc-skip-member", skip)

0 comments on commit 9fa14cb

Please sign in to comment.