Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment