Skip to content

Commit

Permalink
Fixed label for != in Compare node (#2991)
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment authored Jul 10, 2024
1 parent f7e7302 commit fb7b8da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Comparison(Enum):
label="Operation",
option_labels={
Comparison.EQUAL: "L == R",
Comparison.NOT_EQUAL: "L == R",
Comparison.NOT_EQUAL: "L != R",
Comparison.GREATER: "L > R",
Comparison.LESS: "L < R",
Comparison.GREATER_EQUAL: "L >= R",
Expand Down

0 comments on commit fb7b8da

Please sign in to comment.