in dagify/converter/rules.py [0:0]
def run(self, args):
method_name = "rule_{0}".format(args[0])
if self.__can_execute(method_name):
func = getattr(self, method_name)
return func(args[1:])
else:
print(f"Error: Rule not found: {args[0]}")
return args[1]