summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2021-10-02 16:15:35 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2021-10-02 16:26:43 +0200
commit2705e0f3971cd0a20e4310b6a16155e039c5127b (patch)
tree0e026b660f5f443b28e0a1e71edb15dc0d476fc1
parenta655e78fa8e9c51c6455806c1f04ef3f839c0526 (diff)
downloadpylint-git-2705e0f3971cd0a20e4310b6a16155e039c5127b.tar.gz
Add basic typing to ``pylint/testutils/pyreverse``
-rw-r--r--pylint/testutils/pyreverse.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/testutils/pyreverse.py b/pylint/testutils/pyreverse.py
index edaef621d..15c5de4cb 100644
--- a/pylint/testutils/pyreverse.py
+++ b/pylint/testutils/pyreverse.py
@@ -24,10 +24,10 @@ class PyreverseConfig: # pylint: disable=too-many-instance-attributes, too-many
output_format: str = "dot",
colorized: bool = False,
max_color_depth: int = 2,
- ignore_list: Tuple = tuple(),
+ ignore_list: Tuple[str, ...] = tuple(),
project: str = "",
output_directory: str = "",
- ):
+ ) -> None:
self.mode = mode
if classes:
self.classes = classes