Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > pylint > reporters
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
ureports | Directory | - | - | |
__init__.py | File | 1026 bytes | April 17 2025 13:10:59. | |
base_reporter.py | File | 3509 bytes | April 17 2025 13:10:59. | |
collecting_reporter.py | File | 725 bytes | April 17 2025 13:10:59. | |
json_reporter.py | File | 3770 bytes | April 17 2025 13:10:59. | |
multi_reporter.py | File | 3761 bytes | April 17 2025 13:10:59. | |
reports_handler_mix_in.py | File | 3067 bytes | April 17 2025 13:10:59. | |
text.py | File | 10958 bytes | April 17 2025 13:10:59. |
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/main/LICENSE # Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt from __future__ import annotations from typing import TYPE_CHECKING from pylint.reporters.base_reporter import BaseReporter if TYPE_CHECKING: from pylint.reporters.ureports.nodes import Section class CollectingReporter(BaseReporter): """Collects messages.""" name = "collector" def __init__(self) -> None: super().__init__() self.messages = [] def reset(self) -> None: self.messages = [] def _display(self, layout: Section) -> None: pass
SILENT KILLER Tool