Commit 2bdfe2dd authored by David Hendriks's avatar David Hendriks
Browse files

Adding some output to the error of the merge_dicts message

parent a9209dc7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1341,8 +1341,8 @@ def merge_dicts(dict_1: dict, dict_2: dict) -> dict:

            else:
                print(
                    "Object types {},{} not supported".format(
                        type(dict_1[key]), type(dict_2[key])
                    "Object types {}: {} ({}), {} ({}) not supported.".format(
                        key, dict_1[key], type(dict_1[key]), dict_2[key], type(dict_2[key])
                    )
                )
                raise ValueError