Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > pylint > checkers > base
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 | - | - | |
name_checker | Directory | - | - | |
__init__.py | File | 1568 bytes | April 17 2025 13:10:59. | |
basic_checker.py | File | 40655 bytes | April 17 2025 13:10:59. | |
basic_error_checker.py | File | 22514 bytes | April 17 2025 13:10:59. | |
comparison_checker.py | File | 13864 bytes | April 17 2025 13:10:59. | |
docstring_checker.py | File | 7915 bytes | April 17 2025 13:10:59. | |
pass_checker.py | File | 992 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 astroid import nodes from pylint.checkers import utils from pylint.checkers.base.basic_checker import _BasicChecker class PassChecker(_BasicChecker): """Check if the pass statement is really necessary.""" msgs = { "W0107": ( "Unnecessary pass statement", "unnecessary-pass", 'Used when a "pass" statement that can be avoided is encountered.', ) } @utils.only_required_for_messages("unnecessary-pass") def visit_pass(self, node: nodes.Pass) -> None: if len(node.parent.child_sequence(node)) > 1 or ( isinstance(node.parent, (nodes.ClassDef, nodes.FunctionDef)) and node.parent.doc_node ): self.add_message("unnecessary-pass", node=node)
SILENT KILLER Tool