flake8-pie icon indicating copy to clipboard operation
flake8-pie copied to clipboard

unnecessary-cast

Open sbdchd opened this issue 4 years ago • 0 comments

I think this rule could be pretty general but a basic example:

# err
for id in list({x.bar for x in foo}): ...

# ok
for id in {x.bar for x in foo}: ...
for id in list({x.bar for x in foo})[:5]: ...

sbdchd avatar Sep 20 '21 16:09 sbdchd