We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b461f3 commit ba413a2Copy full SHA for ba413a2
src/ansys/dpf/core/mapping_types.py
@@ -71,6 +71,8 @@ def __missing__(self, key):
71
map_types_to_python = _smart_dict_snake()
72
for k, v in map_types_to_cpp.items():
73
map_types_to_python[v] = k
74
+map_types_to_python["vector<bool>"] = "list[bool]"
75
+map_types_to_python["vector<int32>"] = "list[int]"
76
map_types_to_python["vector<double>"] = "list[float]"
77
map_types_to_python["vector<string>"] = "list[str]"
78
map_types_to_python["b"] = "bool"
0 commit comments