(tree: DataTree, cache: bool)
| 119 | |
| 120 | |
| 121 | def _protect_datatree_variables_inplace(tree: DataTree, cache: bool) -> None: |
| 122 | for node in tree.subtree: |
| 123 | _protect_dataset_variables_inplace(node.dataset, cache) |
| 124 | |
| 125 | |
| 126 | def _finalize_store(writes, store): |
no test coverage detected
searching dependent graphs…