def merge_two_dicts()

in src/preprocess.py [0:0]


    def merge_two_dicts(x, y):
        """Merges two dicts, returning a new copy."""
        z = x.copy()
        z.update(y)
        return z