(
backend_entrypoints: dict[str, type[BackendEntrypoint]],
)
| 79 | |
| 80 | |
| 81 | def set_missing_parameters( |
| 82 | backend_entrypoints: dict[str, type[BackendEntrypoint]], |
| 83 | ) -> None: |
| 84 | for backend in backend_entrypoints.values(): |
| 85 | if backend.open_dataset_parameters is None: |
| 86 | open_dataset = backend.open_dataset |
| 87 | backend.open_dataset_parameters = detect_parameters(open_dataset) |
| 88 | |
| 89 | |
| 90 | def sort_backends( |
no test coverage detected
searching dependent graphs…