2525from beartype .typing import TYPE_CHECKING , Dict , Optional
2626
2727from ansys .geometry .core .connection .backend import ApiVersions , BackendType
28+ from ansys .geometry .core .connection .client import MAX_MESSAGE_LENGTH
2829from ansys .geometry .core .connection .defaults import DEFAULT_PIM_CONFIG , DEFAULT_PORT
2930from ansys .geometry .core .connection .local_instance import (
3031 _HAS_DOCKER ,
3334)
3435from ansys .geometry .core .connection .product_instance import prepare_and_start_backend
3536from ansys .geometry .core .logger import LOG as logger
36- from ansys .geometry .core .misc import check_type
37+ from ansys .geometry .core .misc . checks import check_type
3738
3839try :
3940 import ansys .platform .instancemanagement as pypim
4243except ModuleNotFoundError : # pragma: no cover
4344 _HAS_PIM = False
4445
45- from ansys .geometry .core .connection .client import MAX_MESSAGE_LENGTH
4646
4747if TYPE_CHECKING : # pragma: no cover
4848 from ansys .geometry .core .modeler import Modeler
@@ -61,7 +61,7 @@ def launch_modeler(**kwargs: Optional[Dict]) -> "Modeler":
6161
6262 Returns
6363 -------
64- ansys.geometry.core.Modeler
64+ ansys.geometry.core.modeler. Modeler
6565 Pythonic interface for geometry modeling.
6666
6767 Examples
@@ -207,7 +207,7 @@ def launch_modeler_with_discovery_and_pimlight(version: Optional[str] = None) ->
207207
208208 Returns
209209 -------
210- ansys.geometry.core.Modeler
210+ ansys.geometry.core.modeler. Modeler
211211 Instance of Modeler.
212212 """
213213 return _launch_pim_instance (
@@ -236,7 +236,7 @@ def launch_modeler_with_geometry_service_and_pimlight(version: Optional[str] = N
236236
237237 Returns
238238 -------
239- ansys.geometry.core.Modeler
239+ ansys.geometry.core.modeler. Modeler
240240 Instance of Modeler.
241241 """
242242 return _launch_pim_instance (
@@ -265,7 +265,7 @@ def launch_modeler_with_spaceclaim_and_pimlight(version: Optional[str] = None) -
265265
266266 Returns
267267 -------
268- ansys.geometry.core.Modeler
268+ ansys.geometry.core.modeler. Modeler
269269 Instance of Modeler.
270270 """
271271 return _launch_pim_instance (
@@ -375,7 +375,7 @@ def launch_modeler_with_discovery(
375375
376376 Parameters
377377 ----------
378- product_version: `` int`` , optional
378+ product_version: int, optional
379379 The product version to be started. Goes from v23.2.1 to
380380 the latest. Default is ``None``.
381381 If a specific product version is requested but not installed locally,
@@ -398,7 +398,7 @@ def launch_modeler_with_discovery(
398398 3: Error
399399
400400 The default is ``2`` (Warning).
401- api_version: `` ApiVersions`` , optional
401+ api_version: ApiVersions, optional
402402 The backend's API version to be used at runtime. Goes from API v21 to
403403 the latest. Default is ``ApiVersions.LATEST``.
404404 timeout : int, optional
@@ -467,7 +467,7 @@ def launch_modeler_with_spaceclaim(
467467
468468 Parameters
469469 ----------
470- product_version: `` int`` , optional
470+ product_version: int, optional
471471 The product version to be started. Goes from v23.2.1 to
472472 the latest. Default is ``None``.
473473 If a specific product version is requested but not installed locally,
@@ -490,7 +490,7 @@ def launch_modeler_with_spaceclaim(
490490 3: Error
491491
492492 The default is ``2`` (Warning).
493- api_version: `` ApiVersions`` , optional
493+ api_version: ApiVersions, optional
494494 The backend's API version to be used at runtime. Goes from API v21 to
495495 the latest. Default is ``ApiVersions.LATEST``.
496496 timeout : int, optional
0 commit comments