Skip to content
Snippets Groups Projects
Commit f6b2cc94 authored by David Hendriks's avatar David Hendriks
Browse files

Fixed typo

parent 72755ada
No related branches found
No related tags found
No related merge requests found
"""
"""
Module containing most of the utility functions for the binarycpython package
Functions here are mostly functions used in other classes/functions, or
......@@ -1300,7 +1300,7 @@ def merge_dicts(dict_1: dict, dict_2: dict) -> dict:
if (type(dict_1[key]) in [int, float, np.float64]) and (
type(dict_2[key]) in [int, float, np.float64]
):
new_dict[key] = dict_1[ke] + dict_2[key]
new_dict[key] = dict_1[key] + dict_2[key]
else:
print(
......
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