summaryrefslogtreecommitdiff
path: root/pycodestyle.py
diff options
context:
space:
mode:
authorZac-HD <zac.hatfield.dodds@gmail.com>2021-09-13 18:39:55 +1000
committerZac-HD <zac.hatfield.dodds@gmail.com>2021-09-13 22:29:38 +1000
commite458011af828bda5d8c7e573fbefdd9d865b2334 (patch)
tree7e2bdb77f0ed12aaa8b5dc5b06a0254d3d5804f9 /pycodestyle.py
parentaa3417b6a51f5912e32d9c8c879e1b9dd660d5f8 (diff)
downloadpep8-e458011af828bda5d8c7e573fbefdd9d865b2334.tar.gz
Fix E225 for lambdas
Diffstat (limited to 'pycodestyle.py')
-rwxr-xr-xpycodestyle.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index 0d8ed50..ac584ce 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -933,7 +933,9 @@ def missing_whitespace_around_operator(logical_line, tokens):
# ^
# def f(a, b, /):
# ^
- prev_text == '/' and text in {',', ')'} or
+ # f = lambda a, /:
+ # ^
+ prev_text == '/' and text in {',', ')', ':'} or
# def f(a, b, /):
# ^
prev_text == ')' and text == ':'