(item_id: WildcardId)
| 448 | return None |
| 449 | |
| 450 | def _substitute(item_id: WildcardId) -> WildcardId | None: |
| 451 | if not isinstance(item_id, dict): |
| 452 | return None |
| 453 | output_id = dict(output_pattern) |
| 454 | for wk in wildcard_keys: |
| 455 | if wk in item_id: |
| 456 | output_id[wk] = item_id[wk] |
| 457 | return output_id |
| 458 | |
| 459 | for entry in resolved_inputs: |
| 460 | # ALL/ALLSMALLER: nested array of {id, property, value} dicts |
no outgoing calls
no test coverage detected
searching dependent graphs…