in src/mapillary/models/geojson.py [0:0]
def __repr__(self):
"""Return the formal string representation of the Properties"""
attr_representation = [
key for key in dir(self) if not key.startswith("__") and key != "to_dict"
]
attr_key_value_pair = {key: getattr(self, key) for key in attr_representation}
return f"{attr_key_value_pair}"