summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-09-15 12:43:01 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-09-22 22:47:05 +0200
commit5728d82826543e5ed36868538b1a29d066e18085 (patch)
treeef9ab9698c145cd0f739a45db18c1b4ddc275c7d /doc
parent24ce55222f75d54a22e9ce5496d693bc52fb0d78 (diff)
downloadpylint-git-5728d82826543e5ed36868538b1a29d066e18085.tar.gz
Add __all__ in __init__.py so all import are used
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/exts/pylint_features.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/exts/pylint_features.py b/doc/exts/pylint_features.py
index 4803efc9a..c70c454aa 100755
--- a/doc/exts/pylint_features.py
+++ b/doc/exts/pylint_features.py
@@ -5,7 +5,6 @@
"""Script used to generate the features file before building the actual documentation."""
import os
-import sys
import sphinx
@@ -19,7 +18,6 @@ def builder_inited(app):
)
linter = PyLinter()
linter.load_default_plugins()
-
features = os.path.join(base_path, "doc", "technical_reference", "features.rst")
with open(features, "w") as stream:
stream.write("Pylint features\n")