Skip to content

Commit

Permalink
Add missing loop for lists
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Nov 9, 2023
1 parent f57c78c commit 78c4185
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,4 +383,9 @@ def traverse(dictionary, path):

path.append(dictionary_key.lower())

for element in dictionary:
traverse(element, path)

path.pop()

traverse(configuration_dictionary, [])

0 comments on commit 78c4185

Please sign in to comment.