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 f5172bf commit 679341dCopy full SHA for 679341d
src/ansys/dpf/core/result_info.py
@@ -415,9 +415,7 @@ def available_qualifier_labels(self):
415
Available with server's version starting at 5.0.
416
"""
417
coll_obj = collection.StringCollection(
418
- collection=self._support_api.result_info_get_available_qualifier_labels_as_string_coll(
419
- self
420
- ),
+ collection=self._api.result_info_get_available_qualifier_labels_as_string_coll(self),
421
server=self._server,
422
)
423
return coll_obj.get_integral_entries()
tests/test_resultinfo.py
@@ -4,7 +4,6 @@
4
from ansys.dpf.core import Model
5
from conftest import SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_5_0
6
7
-
8
if SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_5_0:
9
mechanical = "mechanical"
10
else:
0 commit comments