Skip to content

Commit

Permalink
docs(backends): include docs for inherited members
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and cpcloud committed Dec 13, 2023
1 parent 0f7ab7a commit c04bf67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/backends/_templates/api.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backend = get_backend(module)
print(f"## `{module}.Backend` {{ #{backend.canonical_path} }}")
methods = sorted(
key for key, value in backend.members.items()
key for key, value in backend.all_members.items()
if value.is_function
if not value.name.startswith("_")
if value.name != "do_connect"
Expand Down

0 comments on commit c04bf67

Please sign in to comment.