(self, key_path: Iterable[str])
| 86 | return new_vars |
| 87 | |
| 88 | def _to_env_var(self, key_path: Iterable[str]) -> str: |
| 89 | return "_".join(key_path).upper() |
| 90 | |
| 91 | def _path_get(self, key_path: Iterable[str]) -> "Config": |
| 92 | # Gets are from self._config because that's what determines valid env |