Hi <@898386824597233664> <@221902451412828160> The...
# advanced-need-help
n
Hi @bgereke @Evolute There is an open issue about this problem here. https://github.com/kedro-org/kedro/issues/1527 It's not ideal, but you will need to created a custom templated config loader. You can find the correct usage here. https://github.com/noklam/kedro_gallery/blob/master/template_config_loader_demo/src/template_config_loader_demo/settings.py
Copy code
python
class MyTemplatedConfigLoader(TemplatedConfigLoader):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self._config_mapping.update(self.runtime_params)