Skip to content

Commit 143aa6e

Browse files
committed
Remove server version check
1 parent 2377606 commit 143aa6e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ansys/dpf/core/operator_specification.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -444,9 +444,7 @@ def _fill_pins(self, binput, to_fill):
444444
)
445445
)
446446
pin_derived_class_type_name = ""
447-
if server_meet_version("7.0", self._server) and hasattr(
448-
self._api, "operator_specification_get_pin_derived_class_type_name"
449-
):
447+
if hasattr(self._api, "operator_specification_get_pin_derived_class_type_name"):
450448
pin_derived_class_type_name = (
451449
self._api.operator_specification_get_pin_derived_class_type_name(
452450
self, binput, i_pin

0 commit comments

Comments
 (0)