summaryrefslogtreecommitdiff
path: root/pylint/reporters/json_reporter.py
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-19 23:26:13 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-19 23:58:56 +0200
commit27a103b82ccafe5126fa33593a6e276da25941fc (patch)
tree1910a13f35a096a4929794b1555ca1fb4a6831a5 /pylint/reporters/json_reporter.py
parent5e76bff35db7ddd3eac443efb58b7f329b423e33 (diff)
downloadpylint-git-27a103b82ccafe5126fa33593a6e276da25941fc.tar.gz
Remove ``__implements__ = IReporter``
Diffstat (limited to 'pylint/reporters/json_reporter.py')
-rw-r--r--pylint/reporters/json_reporter.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pylint/reporters/json_reporter.py b/pylint/reporters/json_reporter.py
index f94b25dd3..8adb78302 100644
--- a/pylint/reporters/json_reporter.py
+++ b/pylint/reporters/json_reporter.py
@@ -9,7 +9,6 @@ from __future__ import annotations
import json
from typing import TYPE_CHECKING
-from pylint.interfaces import IReporter
from pylint.reporters.base_reporter import BaseReporter
if TYPE_CHECKING:
@@ -20,7 +19,6 @@ if TYPE_CHECKING:
class JSONReporter(BaseReporter):
"""Report messages and layouts in JSON."""
- __implements__ = IReporter
name = "json"
extension = "json"