diff --git a/ci/templates/html.mako b/ci/templates/html.mako index 09ad0e0..0e5eb25 100644 --- a/ci/templates/html.mako +++ b/ci/templates/html.mako @@ -1,6 +1,7 @@ <% import re import sys + import inspect import markdown try: @@ -296,6 +297,7 @@ <% class_vars = c.class_variables() smethods = c.functions() + smethods = [f for f in smethods if inspect.getmodule(f.func).__name__.startswith("carl")] inst_vars = c.instance_variables() methods = c.methods() mro = c.module.mro(c) @@ -362,7 +364,7 @@