Skip to content
This repository was archived by the owner on Apr 10, 2018. It is now read-only.

Spurious E225 for some forms of tuple unpacking #14

Open
jek opened this issue Nov 1, 2009 · 1 comment
Open

Spurious E225 for some forms of tuple unpacking #14

jek opened this issue Nov 1, 2009 · 1 comment

Comments

@jek
Copy link

jek commented Nov 1, 2009

$ cat test
a, b = func(kw='k')
(a, b) = func(kw='k')
$ pep8 --repeat test 
test:2:17: E225 missing whitespace around operator
@florentx
Copy link

florentx commented Nov 1, 2009

This error is because the test E225 does not see the opening parenthesis on first char.

This error is fixed on my branch. I fixed this one at the same time as issue #9.
It should be merged in trunk soon or later.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants