From f6b2cc94f22ab59b56f1654b3d50fa2033c5c1ee Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Mon, 10 May 2021 20:27:28 +0100 Subject: [PATCH] Fixed typo --- binarycpython/utils/functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/binarycpython/utils/functions.py b/binarycpython/utils/functions.py index 01441bdd2..bad162d60 100644 --- a/binarycpython/utils/functions.py +++ b/binarycpython/utils/functions.py @@ -1,4 +1,4 @@ -""" + """ 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( -- GitLab