diff options
author | Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-10-07 00:06:31 +0200 |
---|---|---|
committer | Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-10-07 17:22:33 +0200 |
commit | c4ed76d3948afdb0176835c1fa6eb48f54bfd54f (patch) | |
tree | f65896a555e4f8e89b278c94863bdf30773cab55 /doc | |
parent | 05d3e6c6e41e0aec9cf24c101a9a01f1046f61f6 (diff) | |
download | pylint-git-c4ed76d3948afdb0176835c1fa6eb48f54bfd54f.tar.gz |
Move docs helper functions out of ``MessagesHandlerMixIn``
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/exts/pylint_features.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/exts/pylint_features.py b/doc/exts/pylint_features.py index 7a296986c..a867dd05f 100755 --- a/doc/exts/pylint_features.py +++ b/doc/exts/pylint_features.py @@ -9,6 +9,7 @@ import os import sphinx from pylint.lint import PyLinter +from pylint.utils import print_full_documentation def builder_inited(app): @@ -23,7 +24,7 @@ def builder_inited(app): stream.write("Pylint features\n") stream.write("===============\n\n") stream.write(".. generated by pylint --full-documentation\n\n") - linter.print_full_documentation(stream) + print_full_documentation(linter, stream) def setup(app): |