Does anyone know where Kedro does the namespacing?...
# questions
a
Does anyone know where Kedro does the namespacing? I see the context has Context.params, but where does Kedro take the string "params:blabla" and convert it to Context.params["blabla"] ?
So it seems I was under a wrong assumption. Based on
_add_param_to_feed_dict
in the Context Kedro doesn't parse "params:blabla" as params["blabla"] but instead creates a new entry in params called ["params:blabla"] that contains "blabla". Weird!