aboutsummaryrefslogtreecommitdiff
path: root/docs/refman/generatorprint.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/refman/generatorprint.py')
-rw-r--r--docs/refman/generatorprint.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/refman/generatorprint.py b/docs/refman/generatorprint.py
index d346bc4..d836091 100644
--- a/docs/refman/generatorprint.py
+++ b/docs/refman/generatorprint.py
@@ -42,7 +42,6 @@ class GeneratorPrint(GeneratorBase):
mlog.log('Pos args: ', mlog.bold(str([x.name for x in func.posargs])))
mlog.log('Opt args: ', mlog.bold(str([x.name for x in func.optargs])))
mlog.log('Varargs: ', mlog.bold(func.varargs.name if func.varargs is not None else 'null'))
- mlog.log('Kwargs base:', mlog.bold(func.kwargs_inherit.name if func.kwargs_inherit else 'null'))
mlog.log('Kwargs: ', mlog.bold(str(list(func.kwargs.keys()))))
def _generate_object(self, obj: Object) -> None: