Skip to content

Commit

Permalink
Map int32 operator output to int
Browse files Browse the repository at this point in the history
  • Loading branch information
PProfizi committed Nov 24, 2023
1 parent 8048e2b commit 25246f3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ansys/dpf/core/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ def get_data(self):
type_output = types.vec_double
elif type_output == "vector<int32>":
type_output = types.vec_int
elif type_output == "int32":
type_output = types.int

Check warning on line 60 in src/ansys/dpf/core/outputs.py

View check run for this annotation

Codecov / codecov/patch

src/ansys/dpf/core/outputs.py#L60

Added line #L60 was not covered by tests

type_output_derive_class = self._spec.name_derived_class

Expand Down

0 comments on commit 25246f3

Please sign in to comment.