Skip to content

Commit 102902e

Browse files
committed
Forgot to deprecate FloatMath correctly
1 parent b7d0c79 commit 102902e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

more_math/FloatMathNode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class FloatMathNode(io.ComfyNode):
2323
@classmethod
2424
def define_schema(cls) -> io.Schema:
2525
return io.Schema(
26-
node_id="mrmth_FloatMathNode",
26+
node_id="mrmth_ag_FloatMathNode",
2727
category="More math",
2828
display_name="Float math",
2929
inputs=[

more_math/deprecated/FloatMathNode.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class FloatMathNode(io.ComfyNode):
2727
def define_schema(cls) -> io.Schema:
2828
return io.Schema(
2929
node_id="mrmth_FloatMathNode",
30+
is_deprecated=True,
3031
display_name="Float math",
3132
inputs=[
3233
io.Float.Input(id="a", force_input=True),

0 commit comments

Comments
 (0)