(kwargs_mapping: KwargsType)
| 133 | |
| 134 | |
| 135 | def build_kwargs_batch_extractor(kwargs_mapping: KwargsType): |
| 136 | def extract_fn(batch): |
| 137 | return { |
| 138 | name: get_child(batch, *as_keys(path)) |
| 139 | for name, path in kwargs_mapping.items() |
| 140 | } |
| 141 | |
| 142 | return extract_fn |
| 143 | |
| 144 | |
| 145 | empty_mapping = object() |
no outgoing calls
no test coverage detected