summaryrefslogtreecommitdiff
path: root/tests/extensions
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-14 20:27:23 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-15 09:29:56 +0200
commit88077431950f0854e16759e8619fcbb4173b708b (patch)
treedd6136164cc97e8e2c0826430f513ae5dd8ee0ff /tests/extensions
parent9841051f7cfa931dbe7643208910a162c3940d09 (diff)
downloadpylint-git-88077431950f0854e16759e8619fcbb4173b708b.tar.gz
Add handle_message in BaseReporter and add typing
Diffstat (limited to 'tests/extensions')
-rw-r--r--tests/extensions/test_broad_try_clause.py3
-rw-r--r--tests/extensions/test_comparetozero.py3
2 files changed, 0 insertions, 6 deletions
diff --git a/tests/extensions/test_broad_try_clause.py b/tests/extensions/test_broad_try_clause.py
index 3ba2b8118..fb9cffbc6 100644
--- a/tests/extensions/test_broad_try_clause.py
+++ b/tests/extensions/test_broad_try_clause.py
@@ -20,9 +20,6 @@ from pylint.reporters import BaseReporter
class BroadTryClauseTestReporter(BaseReporter):
- def handle_message(self, msg):
- self.messages.append(msg)
-
def on_set_current_module(self, module, filepath):
self.messages = []
diff --git a/tests/extensions/test_comparetozero.py b/tests/extensions/test_comparetozero.py
index 51af08498..e9bea88b4 100644
--- a/tests/extensions/test_comparetozero.py
+++ b/tests/extensions/test_comparetozero.py
@@ -21,9 +21,6 @@ from pylint.reporters import BaseReporter
class CompareToZeroTestReporter(BaseReporter):
- def handle_message(self, msg):
- self.messages.append(msg)
-
def on_set_current_module(self, module, filepath):
self.messages = []