summaryrefslogtreecommitdiff
path: root/pycodestyle.py
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-05-30 14:25:21 -0400
committerAnthony Sottile <asottile@umich.edu>2022-05-30 14:25:21 -0400
commitc1c9a4be729e63a2b72495f8b8d43f3a7580c4a9 (patch)
tree07fbfa0f11e786254fd1c7ace7acfba3331628c7 /pycodestyle.py
parenta7938390f6eb1a3e2880f512223af03b844a7de7 (diff)
downloadpep8-c1c9a4be729e63a2b72495f8b8d43f3a7580c4a9.tar.gz
fix IndexError regression with E275
Diffstat (limited to 'pycodestyle.py')
-rwxr-xr-xpycodestyle.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index e2e4b96..adf743c 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -497,8 +497,7 @@ def missing_whitespace_after_keyword(logical_line, tokens):
tok0.string not in SINGLETONS and
tok0.string not in ('async', 'await') and
tok1.string not in ':\n'):
- line, pos = tok0.end
- yield pos, "E275 missing whitespace after keyword"
+ yield tok0.end, "E275 missing whitespace after keyword"
@register_check