Skip to content

Commit

Permalink
update docs to exclude inspect module
Browse files Browse the repository at this point in the history
  • Loading branch information
psifertex committed May 21, 2020
1 parent 6008dea commit 174c0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api-docs/source/conf.py
Expand Up @@ -32,7 +32,7 @@

def modulelist(modulename):
modules = inspect.getmembers(modulename, inspect.ismodule)
return sorted(set(x for x in modules if x[0] not in ("abc", "atexit", "binaryninja", "builtins", "ctypes", "core", "struct", "sys", "_binaryninjacore", "traceback", "code", "enum", "json", "numbers", "threading", "re", "requests", "os", "startup", "associateddatastore", "range", "pyNativeStr", "with_metaclass", "cstr", "fnsignature", "get_class_members", "datetime")))
return sorted(set(x for x in modules if x[0] not in ("abc", "atexit", "binaryninja", "builtins", "ctypes", "core", "struct", "sys", "_binaryninjacore", "traceback", "code", "enum", "json", "numbers", "threading", "re", "requests", "os", "startup", "associateddatastore", "range", "pyNativeStr", "with_metaclass", "cstr", "fnsignature", "get_class_members", "datetime", "inspect")))

def classlist(module):
members = inspect.getmembers(module, inspect.isclass)
Expand Down

0 comments on commit 174c0b9

Please sign in to comment.