Skip to content

Commit

Permalink
Fixed label for != in Compare node
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Jul 10, 2024
1 parent 253c54b commit 1d5dfdb
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 1d5dfdb

Please sign in to comment.