dosisod / refurb

A tool for refurbishing and modernizing Python codebases
GNU General Public License v3.0
2.49k stars 54 forks source link

Add better detection and error messages for len compatible types in FURB115 #331

Closed dosisod closed 9 months ago

dosisod commented 9 months ago

Previously dict_keys() and dict_values() objects where not type deducable by Refurb, and now they are. In addition, chained calls like len(list(d)) are able to be simplified down to just d.

Closes #330.