Loading binarycpython/utils/functions.py +2 −2 Original line number Diff line number Diff line Loading @@ -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 Loading Loading
binarycpython/utils/functions.py +2 −2 Original line number Diff line number Diff line Loading @@ -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 Loading