Remove unused function lcm in conds.py

This commit is contained in:
huchenlei 2025-01-22 20:41:17 -05:00
parent f3566f0894
commit 1ea94e6448

View File

@ -3,9 +3,6 @@ import math
import comfy.utils
def lcm(a, b): #TODO: eventually replace by math.lcm (added in python3.9)
return abs(a*b) // math.gcd(a, b)
class CONDRegular:
def __init__(self, cond):
self.cond = cond