Skip to content

Commit

Permalink
Skip 'as_native' methods from python api
Browse files Browse the repository at this point in the history
  • Loading branch information
Ozaq authored and schroedtert committed Mar 14, 2024
1 parent de6a4f4 commit 23c9fe9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@
def skip_submodules(app, what, name, obj, skip, options):
if what == "module":
skip = True
if what == "method":
if name.endswith("as_native"):
skip = True
return skip


Expand Down

0 comments on commit 23c9fe9

Please sign in to comment.