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 f381100 commit 3bc2141Copy full SHA for 3bc2141
src/ansys/dpf/core/core.py
@@ -27,10 +27,14 @@
27
import logging
28
import os
29
from pathlib import Path, PurePosixPath, PureWindowsPath
30
+from typing import TYPE_CHECKING
31
import warnings
32
import weakref
33
-from ansys.dpf.core import AnyServerType, errors, misc, server as server_module
34
+from ansys.dpf.core import errors, misc, server as server_module
35
+
36
+if TYPE_CHECKING: # pragma: noqa
37
+ from ansys.dpf.core import AnyServerType
38
from ansys.dpf.core.check_version import server_meet_version, version_requires
39
from ansys.dpf.core.runtime_config import (
40
RuntimeClientConfig,
0 commit comments