Get all environment section names (sections starting with 'env:'). Returns: List of environment section names
(self)
| 1039 | return self.config.sections() |
| 1040 | |
| 1041 | def get_env_sections(self) -> list[str]: |
| 1042 | """ |
| 1043 | Get all environment section names (sections starting with 'env:'). |
| 1044 | |
| 1045 | Returns: |
| 1046 | List of environment section names |
| 1047 | """ |
| 1048 | return [ |
| 1049 | section for section in self.config.sections() if section.startswith("env:") |
| 1050 | ] |
| 1051 | |
| 1052 | def has_section(self, section: str) -> bool: |
| 1053 | """ |
no outgoing calls