summaryrefslogtreecommitdiff
path: root/pylint/checkers/__init__.py
diff options
context:
space:
mode:
authorBruno P. Kinoshita <kinow@users.noreply.github.com>2019-01-06 18:48:34 +1300
committerClaudiu Popa <pcmanticore@gmail.com>2019-01-07 08:37:41 +0100
commit1ef849fcf9b14e309ba6998a018d565e4ed1826b (patch)
treeed55377813d5df0f8001d00938c3b342915a348e /pylint/checkers/__init__.py
parentf1c6190bf47a04098307dea6f51b63a928f6be0a (diff)
downloadpylint-git-1ef849fcf9b14e309ba6998a018d565e4ed1826b.tar.gz
Expose/export BaseTokenChecker in __all__ as well?
Hi, I was using `BaseTokenChecker` when my IDE complained it wasn't in the `__init__`'s `__all__` variable. Any reason for not having it there? Learned about `BaseTokenChecker` after finding it in [another checker that uses it too](https://github.com/PyCQA/pylint/blob/master/pylint/extensions/check_elif.py). Cheers Bruno
Diffstat (limited to 'pylint/checkers/__init__.py')
-rw-r--r--pylint/checkers/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/__init__.py b/pylint/checkers/__init__.py
index fcb1f5bf5..1a4c0009f 100644
--- a/pylint/checkers/__init__.py
+++ b/pylint/checkers/__init__.py
@@ -131,4 +131,4 @@ def initialize(linter):
register_plugins(linter, __path__[0])
-__all__ = ("BaseChecker", "initialize")
+__all__ = ("BaseChecker", "BaseTokenChecker", "initialize")