(tlist)
| 68 | """ |
| 69 | def wrap(f): |
| 70 | def wrapped_f(tlist): |
| 71 | for sgroup in tlist.get_sublists(): |
| 72 | if not isinstance(sgroup, cls): |
| 73 | wrapped_f(sgroup) |
| 74 | f(tlist) |
| 75 | |
| 76 | return wrapped_f |
| 77 |
nothing calls this directly
no test coverage detected
searching dependent graphs…