(file_or_name: Path | str)
| 29 | |
| 30 | |
| 31 | def load_one_example(file_or_name: Path | str) -> Callable[[], ComponentType]: |
| 32 | return lambda: ( |
| 33 | # we use a lambda to ensure each instance is fresh |
| 34 | _load_one_example(file_or_name) |
| 35 | ) |
| 36 | |
| 37 | |
| 38 | def get_normalized_example_name( |
no test coverage detected