def fetch_labels_mapping()

in utils.py [0:0]


def fetch_labels_mapping():
    with open("labels_mapping.txt") as file:
        entry = [line.split("=") for line in file.readlines()]
    return {key.strip(): value.strip() for key, value in entry}