diff options
Diffstat (limited to 'pylint/utils.py')
| -rw-r--r-- | pylint/utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pylint/utils.py b/pylint/utils.py index 417ccbcb5..aa6535425 100644 --- a/pylint/utils.py +++ b/pylint/utils.py @@ -282,8 +282,12 @@ class MessagesHandlerMixIn: __by_id_managed_msgs = [] # type: ignore def __init__(self): + self.file_state = FileState() self._msgs_state = {} self.msg_status = 0 + self.msgs_store = MessagesStore() + self.reporter = None + super().__init__() def _checker_messages(self, checker): for known_checker in self._checkers[checker.lower()]: @@ -1060,6 +1064,7 @@ class ReportsHandlerMixIn: def __init__(self): self._reports = collections.defaultdict(list) self._reports_state = {} + super().__init__() def report_order(self): """ Return a list of reports, sorted in the order |
