(tgt, src)
| 38 | |
| 39 | |
| 40 | def update_from_first_child(tgt, src): |
| 41 | first_child = next(iter(src.get_children()), None) |
| 42 | if first_child is not None: |
| 43 | tgt.update_from(first_child) |
| 44 | |
| 45 | |
| 46 | class HandlerBase: |
nothing calls this directly
no test coverage detected
searching dependent graphs…