1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

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

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