From c8c9430e81de8e7bd51ed18ab10a05ef24bfa310 Mon Sep 17 00:00:00 2001 From: BenYuan Date: Fri, 10 Jan 2025 21:26:14 +0000 Subject: [PATCH] Remove print --- flow360/component/simulation/unit_system.py | 1 - 1 file changed, 1 deletion(-) diff --git a/flow360/component/simulation/unit_system.py b/flow360/component/simulation/unit_system.py index 73da276cf..9dbb696ca 100644 --- a/flow360/component/simulation/unit_system.py +++ b/flow360/component/simulation/unit_system.py @@ -169,7 +169,6 @@ def _unit_object_parser(value, unyt_types: List[type]): ) for unyt_type in unyt_types: try: - print("value = ", value) return unyt_type(value["value"], value["units"], dtype=np.float64) except u.exceptions.UnitParseError: pass