(example: str)
| 307 | |
| 308 | |
| 309 | def resolve_example_path(example: str) -> Path: |
| 310 | example_path = HERE.parent / "examples" / example |
| 311 | if not example_path.exists(): |
| 312 | raise FileNotFoundError(f"Example '{example}' not found at '{example_path}'") |
| 313 | return example_path |
| 314 | |
| 315 | |
| 316 | def create_concurrent_run_args(args: argparse.Namespace) -> ConcurrentRunArgs: |
no outgoing calls
no test coverage detected