summaryrefslogtreecommitdiff
path: root/doc/development_guide/how_tos
diff options
context:
space:
mode:
authorjessebrennan <jesse@jesse.computer>2023-02-07 13:31:42 -0800
committerGitHub <noreply@github.com>2023-02-07 22:31:42 +0100
commit08474328da03f8b11e3234642d566732b15632a7 (patch)
tree0b625ad24e9f92e9358192af227320bd34acae5a /doc/development_guide/how_tos
parent58fce614cde88b7a8513a7b99d7598351cd1b012 (diff)
downloadpylint-git-08474328da03f8b11e3234642d566732b15632a7.tar.gz
Add missing import to example test (#8228)
Diffstat (limited to 'doc/development_guide/how_tos')
-rw-r--r--doc/development_guide/how_tos/custom_checkers.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/development_guide/how_tos/custom_checkers.rst b/doc/development_guide/how_tos/custom_checkers.rst
index ab44f06bd..0951f71f1 100644
--- a/doc/development_guide/how_tos/custom_checkers.rst
+++ b/doc/development_guide/how_tos/custom_checkers.rst
@@ -320,6 +320,7 @@ We can use the example code that we used for debugging as our test cases.
.. code-block:: python
+ import astroid
import my_plugin
import pylint.testutils