bitter-ability-32190
04/08/2022, 1:20 PM@ruleawait Get@rule@rule_helper@ruleawait Get@rule_helper
async def _collect_thingamabobs(x, y, z):
    a = await Get(A, B, x)
    if y:
       a += await Get(C, D, z)
    return a
@rule
async def my_rule(...):
    ...
    a = await _collect_thingamabobs(x, y, z)
    ....