Skip to content

Commit 3cfd527

Browse files
committed
Add line breaks in comment
1 parent e5cdc22 commit 3cfd527

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pycodestyle.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1467,7 +1467,8 @@ def ambiguous_identifier(logical_line, tokens):
14671467
if prev_text in idents_to_avoid:
14681468
ident = prev_text
14691469
pos = prev_start
1470-
# identifiers bound to values with 'as', 'for', 'global', or 'nonlocal'
1470+
# identifiers bound to values with 'as', 'for',
1471+
# 'global', or 'nonlocal'
14711472
if prev_text in ('as', 'for', 'global', 'nonlocal'):
14721473
if text in idents_to_avoid:
14731474
ident = text

0 commit comments

Comments
 (0)