diff options
Diffstat (limited to 'pylint/checkers')
-rw-r--r-- | pylint/checkers/format.py | 2 | ||||
-rw-r--r-- | pylint/checkers/misc.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py index 1f8528800..cde145afc 100644 --- a/pylint/checkers/format.py +++ b/pylint/checkers/format.py @@ -1291,7 +1291,7 @@ class FormatChecker(BaseTokenChecker): if pragma.action == "disable" and "line-too-long" in pragma.messages: return False except PragmaParserError: - # Printing usefull informations dealing with this error is done in lint.py + # Printing useful information dealing with this error is done in the lint package pass return True diff --git a/pylint/checkers/misc.py b/pylint/checkers/misc.py index cbd04ed55..512d03e65 100644 --- a/pylint/checkers/misc.py +++ b/pylint/checkers/misc.py @@ -162,7 +162,7 @@ class EncodingChecker(BaseChecker): ): values.extend(pragma_repr.messages) except PragmaParserError: - # Printing usefull informations dealing with this error is done in lint.py + # Printing useful information dealing with this error is done in the lint package pass values = [_val.upper() for _val in values] if set(values) & set(self.config.notes): |