(self)
| 634 | return options |
| 635 | |
| 636 | def get_unused_configs(self) -> set[str]: |
| 637 | return self._unused_configs.copy() |
| 638 | |
| 639 | def compile_glob(self, s: str) -> Pattern[str]: |
| 640 | # Compile one of the glob patterns to a regex so that '.*' can |
no test coverage detected