Closed dosisod closed 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.
dict_keys()
dict_values()
len(list(d))
d
Closes #330.
Previously
dict_keys()
anddict_values()
objects where not type deducable by Refurb, and now they are. In addition, chained calls likelen(list(d))
are able to be simplified down to justd
.Closes #330.