hbui
2024-07-24 a9f3557648135eca0766a51baddf7d39a22a6e01
num-int/src/numint/expression_transformer.py
@@ -38,7 +38,7 @@
        elif hasattr(math, id):
            return f"math.{id}"
        else:
            raise ValueError(f"{id} must be 'x' one of constants in math module")
            raise ValueError(f"Variable must be 'x' one of constants in math module, got {id}")
    def function(self, name, argv) -> str:
        if hasattr(math, name):