(inp, context=None)
| 5 | |
| 6 | @batch_def() |
| 7 | def group(inp, context=None): |
| 8 | for x in inp: |
| 9 | x['group_id'] = context.id |
| 10 | context.id += 1 |
| 11 | |
| 12 | @source_def() |
| 13 | def gen(context=None): |
nothing calls this directly
no outgoing calls
no test coverage detected