Accept list notation (square brackets) as well as dot notation
dictionary_with_list = {"list": ["One", "Two", "Three"]}
resolve(my_dictionary, "list[1]") # Two
You can now pull specific items out of a list
dictionary_with_list = {"list": ["One", "Two", "Three"]}
resolve(my_dictionary, "list.1") # Two