Skip to content

Commit 30258f2

Browse files
Apply suggestions from code review
Co-authored-by: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
1 parent 017d47b commit 30258f2

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

pylint/checkers/non_ascii_names.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,8 @@ class NonAsciiNameChecker(base_checker.BaseChecker):
4747
"non-ascii-file-name",
4848
(
4949
# Some = PyCharm at the time of writing didn't display the non_ascii_name_loł
50-
# files and had big troubles with git. Probably only a bug shows the problem
51-
# quite good. That's also why this is a warning and not only a convention!
52-
"Under python 3.5, PEP 3131 only allows non-ascii identifiers, not file names."
50+
# files. That's also why this is a warning and not only a convention!
51+
"Under python 3.5, PEP 3131 allows non-ascii identifiers, but not non-ascii file names."
5352
"Since Python 3.5, even though Python supports UTF-8 files, some editors or tools "
5453
"don't."
5554
),

0 commit comments

Comments
 (0)