Closed NicoHood closed 7 months ago
Hi, would it be possible to add the following formulas?
def NOT_EQUAL(left: Any, right: Any) -> str: return "{} != {}".format(left, right) def LESS_EQUAL(left: Any, right: Any) -> str: return "{}<={}".format(left, right) def GREATER_EQUAL(left: Any, right: Any) -> str: return "{}>={}".format(left, right) def NOT(value: Any) -> str: return "NOT({})".format(value)
Feel free to read our contribution guidelines and submit a pull request!
See #329 for a proposed fix.
Hi, would it be possible to add the following formulas?