QuackatronHQ / Gigarepo

Duplicate dictionary keys PYL-W0109
Bug risk
Major
24 days ago2 years old
Duplicate key 'str' in dictionary
39
40
41def parse_value(value, kind):
42    converters = {43        "int": int,
44        "str": None,  # doesn't need conversion
45        "float": float,