deepsourcestatus / test-repository

Duplicate dictionary keys PYL-W0109
Bug risk
Major
8 months ago8 months 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,