diff --git a/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py b/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py index 31241b1a7dc..d093179669c 100644 --- a/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py +++ b/src/ansys/aedt/core/filtersolutions_core/export_to_aedt.py @@ -282,10 +282,6 @@ def _define_export_to_desktop_dll_functions(self): self._dll.importTunedVariables.argtypes = [c_char_p, c_int] self._dll.importTunedVariables.restype = c_int - def _open_aedt_export(self): - """Open export page to accept manipulate export parameters""" - status = self._dll.openLumpedExportPage() - ansys.aedt.core.filtersolutions_core._dll_interface().raise_error(status) self._dll.setPartLibraries.argtype = c_int self._dll.setPartLibraries.restype = c_int self._dll.getPartLibraries.argtype = POINTER(c_int) @@ -494,6 +490,11 @@ def _open_aedt_export(self): self._dll.removeModelithicsResistorsFamily.argtype = c_char_p self._dll.removeModelithicsResistorsFamily.restype = c_int + def _open_aedt_export(self): + """Open export page to accept manipulate export parameters""" + status = self._dll.openLumpedExportPage() + ansys.aedt.core.filtersolutions_core._dll_interface().raise_error(status) + @property def schematic_name(self) -> str: """Name of the exported schematic in ``AEDT``, displayed as the project and design names.