(self, section_name: str)
| 50 | raise |
| 51 | |
| 52 | def file_name(self, section_name: str) -> str: |
| 53 | return os.path.join(self.config_dir, section_name + ".json") |
| 54 | |
| 55 | def get(self, section_name: str) -> Any: |
| 56 | """Retrieve the config data for the specified section. |