summaryrefslogtreecommitdiff
path: root/tests/extensions/test_emptystring.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extensions/test_emptystring.py')
-rw-r--r--tests/extensions/test_emptystring.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/extensions/test_emptystring.py b/tests/extensions/test_emptystring.py
index 3b84129d8..95143c9ad 100644
--- a/tests/extensions/test_emptystring.py
+++ b/tests/extensions/test_emptystring.py
@@ -19,6 +19,7 @@ from os import path as osp
import pytest
from pylint.extensions.emptystring import CompareToEmptyStringChecker
+from pylint.lint.pylinter import PyLinter
@pytest.fixture(scope="module")
@@ -31,7 +32,7 @@ def disable():
return ["I"]
-def test_emptystring_message(linter):
+def test_emptystring_message(linter: PyLinter) -> None:
elif_test = osp.join(
osp.dirname(osp.abspath(__file__)), "data", "empty_string_comparison.py"
)