Hi team! I see that we might need to do `if "param...
# questions
p
Hi team! I see that we might need to do
if "parameters" in key
in the code for
omegaconf_config.py
. Imagine a scenario where we are trying to load some common parameters using
common
patterns and
country
parameters using
country
patterns in settings.py. In that case we can actually do
country_parameters
or
common_parameters
and it would still work as expected. Need your thoughts
d
Hi @Puneet Saini, is there a reason you couldn't use a single
parameters
section that includes both paths?
p
Aah nvm, I actually managed to make my use case work with single parameters section
👍 1