Skip to content

Commit

Permalink
Remove unused function lcm in conds.py (#6572)
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei authored Jan 23, 2025
1 parent f3566f0 commit dfa2b6d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions comfy/conds.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
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
Expand Down

0 comments on commit dfa2b6d

Please sign in to comment.