()
| 144 | |
| 145 | |
| 146 | def _parser() -> configparser.ConfigParser: |
| 147 | parser = configparser.ConfigParser() |
| 148 | with CONFIG_LOCK: |
| 149 | parser.read(CONFIG_PATH, encoding="utf-8") |
| 150 | return parser |
| 151 | |
| 152 | |
| 153 | def _as_bool(value: Any) -> bool: |
no test coverage detected