Skip to content

Commit 2427af6

Browse files
authored
fix: keep import of BaseServer in server.py (#2646)
1 parent df5dd9b commit 2427af6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/ansys/dpf/core/server.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,13 @@
4848
ServerConfig,
4949
ServerFactory,
5050
)
51-
from ansys.dpf.core.server_types import DPF_DEFAULT_PORT, LOCALHOST, RUNNING_DOCKER, AnyServerType
51+
from ansys.dpf.core.server_types import ( # noqa: F401 # pylint: disable=unused-import
52+
DPF_DEFAULT_PORT,
53+
LOCALHOST,
54+
RUNNING_DOCKER,
55+
AnyServerType,
56+
BaseServer,
57+
)
5258

5359

5460
def shutdown_global_server():

0 commit comments

Comments
 (0)