Closed asottile closed 1 year ago
this line of code triggers three warnings but should only trigger one:
lambda l: dict(zip(l, range(len(l))))
$ python3 -m pycodestyle t.py t.py:1:8: E741 ambiguous variable name 'l' t.py:1:20: E741 ambiguous variable name 'l' t.py:1:33: E741 ambiguous variable name 'l'
cc @dannysepler
good catches! i might be able to help tonight or tomorrow night (EST), if you haven't resolved all the regressions by then
via #1123
this line of code triggers three warnings but should only trigger one:
cc @dannysepler