def rule_make_unique()

in dagify/converter/rules.py [0:0]


    def rule_make_unique(self, vals):
        print(f"Info: Rule Make Unique: {vals[0]}")
        random.seed()
        rnd = random.randint(0, 1000000)
        uid = str(uuid.uuid5(uuid.NAMESPACE_DNS, str(vals[0] + str(rnd))))[:5]
        vals[0] = self.rule_suffix([vals[0], uid])
        return vals[0]