(a, b)
| 810 | counter = [] |
| 811 | |
| 812 | def counter_func(a, b): |
| 813 | counter.append(None) |
| 814 | return func(a, b) |
| 815 | |
| 816 | a = Task("key-1", counter_func, "a", "a") |
| 817 | b = Task("key-2", func2, a.ref(), "b") |
nothing calls this directly
no test coverage detected
searching dependent graphs…