summaryrefslogtreecommitdiff
path: root/tests/functional/s
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-04-17 22:09:36 +0200
committerDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-18 10:11:30 +0200
commit22e360d286536d821e88f303b478195674a50ea5 (patch)
treea63bce4a3561bee0ab98c3780b992becec236859 /tests/functional/s
parent39de57104d93e10a46a145787caf00ff38655e57 (diff)
downloadpylint-git-22e360d286536d821e88f303b478195674a50ea5.tar.gz
Remove the 'no-init' message tat was not emitted anyway
See https://github.com/PyCQA/pylint/issues/2409#issuecomment-1100952171 Closes #2409
Diffstat (limited to 'tests/functional/s')
-rw-r--r--tests/functional/s/subclassed_final_class_py38.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/s/subclassed_final_class_py38.py b/tests/functional/s/subclassed_final_class_py38.py
index 7f0671e75..6aca83352 100644
--- a/tests/functional/s/subclassed_final_class_py38.py
+++ b/tests/functional/s/subclassed_final_class_py38.py
@@ -1,7 +1,7 @@
"""Since Python version 3.8, a class decorated with typing.final cannot be
subclassed """
-# pylint: disable=no-init, useless-object-inheritance, missing-docstring, too-few-public-methods
+# pylint: disable=useless-object-inheritance, missing-docstring, too-few-public-methods
from typing import final