From 25246f3b2bc79de4de4326c0768e8f34b536fea2 Mon Sep 17 00:00:00 2001 From: "paul.profizi" Date: Fri, 24 Nov 2023 11:38:17 +0100 Subject: [PATCH] Map int32 operator output to int --- src/ansys/dpf/core/outputs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ansys/dpf/core/outputs.py b/src/ansys/dpf/core/outputs.py index 610f7bd67a..9034fc1eaa 100644 --- a/src/ansys/dpf/core/outputs.py +++ b/src/ansys/dpf/core/outputs.py @@ -56,6 +56,8 @@ def get_data(self): type_output = types.vec_double elif type_output == "vector": type_output = types.vec_int + elif type_output == "int32": + type_output = types.int type_output_derive_class = self._spec.name_derived_class