From 0a3a1df0dda4c8817bd7bbd092dd23f238abbf65 Mon Sep 17 00:00:00 2001 From: "Emmet A. Francis" <99422170+emmetfrancis@users.noreply.github.com> Date: Fri, 19 Jul 2024 17:59:56 -0700 Subject: [PATCH] Fix type for sym_expr in parameter (allow Any for now) --- smart/model_assembly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smart/model_assembly.py b/smart/model_assembly.py index 049adbc..3db1f52 100644 --- a/smart/model_assembly.py +++ b/smart/model_assembly.py @@ -573,7 +573,7 @@ class Parameter(ObjectInstance): group: str = "" notes: str = "" use_preintegration: bool = False - sym_expr: str = "" + sym_expr: Any = "" def to_dict(self): """Convert to a dict that can be used to recreate the object."""