summaryrefslogtreecommitdiff
path: root/api-docs/source
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-05-19 21:26:52 -0400
committerJordan Wiens <jordan@psifertex.com>2022-05-19 21:29:09 -0400
commitbffa656ee3da2093d759615253a50a955b6e4da8 (patch)
tree075b286036e9b980b8c9805439a560e0437ce21f /api-docs/source
parentee9df15d6485cc8a729dadffa2537bc38ac6656e (diff)
exclude added python dataclass module
Diffstat (limited to 'api-docs/source')
-rw-r--r--api-docs/source/conf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/api-docs/source/conf.py b/api-docs/source/conf.py
index 4d9915c1..832ddc9b 100644
--- a/api-docs/source/conf.py
+++ b/api-docs/source/conf.py
@@ -49,7 +49,8 @@ def modulelist(modulename):
"json", "numbers", "threading", "re", "requests", "os", "startup",
"associateddatastore", "range", "pyNativeStr", "cstr", "fnsignature",
"get_class_members", "datetime", "inspect", "subprocess", "site",
- "string", "random", "uuid", "queue", "collections", "dbgcore", "debugger", "webbrowser"]
+ "string", "random", "uuid", "queue", "collections", "dbgcore", "debugger", "webbrowser",
+ "dataclasses"]
return sorted(set(x for x in modules if x[0] not in moduleblacklist))
def classlist(module):