Removed unused variable.

This commit is contained in:
Fabio Caccamo 2020-02-03 12:07:52 +01:00
parent b9aab97f53
commit 933e799a54
1 changed files with 0 additions and 1 deletions

View File

@ -206,7 +206,6 @@ def traverse(d, callback):
def unflatten(d, separator='_'):
new_dict = d.copy()
new_dict.clear()
new_dict_cursor = new_dict
keys = list(d.keys())
for key in keys:
value = d.get(key, None)