Remove unused function lcm in conds.py (#6572)

This commit is contained in:
Chenlei Hu 2025-01-23 05:54:09 -05:00 committed by GitHub
parent f3566f0894
commit dfa2b6d129
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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