summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpycodestyle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index 38648a3..f92d860 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -1180,8 +1180,8 @@ def ambiguous_identifier(logical_line, tokens):
if prev_text in idents_to_avoid:
ident = prev_text
pos = prev_start
- # identifiers after 'as'
- if prev_text == 'as':
+ # identifiers bound to a value with 'as', 'global', or 'nonlocal'
+ if prev_text in ('as', 'global', 'nonlocal'):
if text in idents_to_avoid:
ident = text
pos = start