(self, name: str)
| 324 | self.default = name |
| 325 | |
| 326 | def _check_default_collision(self, name: str) -> None: |
| 327 | if self.default: |
| 328 | msg = "'{}' cannot be the default because '{}' already is!" |
| 329 | raise ValueError(msg.format(name, self.default)) |
| 330 | |
| 331 | def _split_path(self, path: str) -> Tuple[str, str]: |
| 332 | """ |
no outgoing calls
no test coverage detected