-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E741 ambiguous variable name 'l' between flake8 and pycodesyle #598
Comments
because flake8 doesn't use pycodestyle 2.1.0 yet. |
@spaceone is correct. |
@raminfp Yes, flake8 will have to update its pycodestyle-compatibility. This is planned but probably takes a little time: See https://gitlab.com/pycqa/flake8/issues/246 PyCQA/flake8#7 |
Thanks again, |
@spaceone sorry again for question!there is this warning E741 ambiguous variable name 'l' of pycodestyle on new version flake8? |
@raminfp FYI flake8 3.5.0 has E741 added https://gitlab.com/pycqa/flake8/commit/ee435593488a5c3b9805bc686b83d17505491c42 |
This has been enabled in flake8 3.5.0, which imports pycodestyle 2.1.0 [1]. [1] PyCQA/pycodestyle#598 Signed-off-by: Stephen Finucane <[email protected]>
The E741 (Ambiguous variable name) error has been enabled in flake8 3.5.0, which imports pycodestyle 2.1.0 [1]. Resolve the warnings. [1] PyCQA/pycodestyle#598 Signed-off-by: Stephen Finucane <[email protected]>
As described in PyCQA/pycodestyle#598, pycodestyle has exposed a new error for "ambiguous variable names." I really wish this project were less eager to add new warnings of questionable value that are enabled by default...
Hi,
i test this on pycodestyle
output :
E741 ambiguous variable name 'l'
but flake8 is wrapper of pycodestyle,... not found this, E741 why?
The text was updated successfully, but these errors were encountered: