in dagify/converter/rules.py [0:0]
def rule_prefix(self, vals):
if len(vals) < 2:
print("Error: Not Enough Variables passed to Prefix Rule")
return
print(f"Info: Rule Prefix: {vals[0]}")
vals[0] = vals[1] + "_" + vals[0]
return vals[0]