summaryrefslogtreecommitdiff
path: root/api-docs/source/conf.py
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2025-10-21 14:13:06 -0400
committerJordan Wiens <github@psifertex.com>2025-10-21 17:33:25 -0400
commit0588217591c2f39af0e9176ba17786f3e590a700 (patch)
tree0b79a1d11d42d7d10ea0d80952cd06e51fbd3e45 /api-docs/source/conf.py
parent314d2cac1c12d0e20266fc7671689c376b13a26f (diff)
fix some functions missing in the documentation
Diffstat (limited to 'api-docs/source/conf.py')
-rw-r--r--api-docs/source/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/api-docs/source/conf.py b/api-docs/source/conf.py
index 98cacdc1..685fe16d 100644
--- a/api-docs/source/conf.py
+++ b/api-docs/source/conf.py
@@ -79,7 +79,7 @@ def classlist(module):
return ((name, member) for (name, member) in members if not name[0].startswith("_") and in_mod(member))
def fnlist(module):
- return [x for x in inspect.getmembers(module, inspect.isfunction) if x[1].__module__ == module]
+ return [x for x in inspect.getmembers(module, inspect.isfunction) if x[1].__module__ == module.__name__]
def setup(app):
app.add_css_file('css/other.css')