From b1cc3eb76d0b85ed3c37aa0d7c9a43e4c5f5e785 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Mon, 28 Jun 2021 17:58:39 +0100 Subject: [PATCH] Fixed error in function --- .gitignore | 1 + binarycpython/utils/functions.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index db5d92656..d4a640ff0 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ tests/json* lib/ bin/ obj/ +-1.log # Standard template *.org~ diff --git a/binarycpython/utils/functions.py b/binarycpython/utils/functions.py index 045e9c6c9..9691f1f55 100644 --- a/binarycpython/utils/functions.py +++ b/binarycpython/utils/functions.py @@ -1413,7 +1413,7 @@ def inspect_dict( type(input_dict[key]) (except if the value is a dict) """ - new_dict = OrderedDict() # TODO: check if this still works + structure_dict = OrderedDict() # TODO: check if this still works # for key, value in input_dict.items(): -- GitLab