From bc88f3403893563454a7dbf7f7d890c74f83b147 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Wed, 1 Oct 2025 10:15:42 +0200 Subject: [PATCH 1/6] fix: keep import of ServerBase in server.py --- src/ansys/dpf/core/server.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ansys/dpf/core/server.py b/src/ansys/dpf/core/server.py index ad4d86013b6..3b628f0cfac 100644 --- a/src/ansys/dpf/core/server.py +++ b/src/ansys/dpf/core/server.py @@ -48,7 +48,13 @@ ServerConfig, ServerFactory, ) -from ansys.dpf.core.server_types import DPF_DEFAULT_PORT, LOCALHOST, RUNNING_DOCKER, AnyServerType +from ansys.dpf.core.server_types import ( + DPF_DEFAULT_PORT, + LOCALHOST, + RUNNING_DOCKER, + ServerBase, + AnyServerType, +) def shutdown_global_server(): From eca1aa4e54002747e64fc34bb7288d25cee86a81 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Wed, 1 Oct 2025 10:17:17 +0200 Subject: [PATCH 2/6] Update src/ansys/dpf/core/server.py --- src/ansys/dpf/core/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/dpf/core/server.py b/src/ansys/dpf/core/server.py index 3b628f0cfac..ad503c17519 100644 --- a/src/ansys/dpf/core/server.py +++ b/src/ansys/dpf/core/server.py @@ -52,7 +52,7 @@ DPF_DEFAULT_PORT, LOCALHOST, RUNNING_DOCKER, - ServerBase, + BaseServer, AnyServerType, ) From d484b216085f5a7f81257914f4406652ce68dd29 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Wed, 1 Oct 2025 10:24:08 +0200 Subject: [PATCH 3/6] Fix QA --- src/ansys/dpf/core/server.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ansys/dpf/core/server.py b/src/ansys/dpf/core/server.py index ad503c17519..f32cda172e5 100644 --- a/src/ansys/dpf/core/server.py +++ b/src/ansys/dpf/core/server.py @@ -49,11 +49,11 @@ ServerFactory, ) from ansys.dpf.core.server_types import ( - DPF_DEFAULT_PORT, - LOCALHOST, - RUNNING_DOCKER, - BaseServer, + DPF_DEFAULT_PORT, + LOCALHOST, + RUNNING_DOCKER, AnyServerType, + BaseServer, ) From 0c0ccfcc91f744b7609c1543367a0cad500589c2 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Wed, 1 Oct 2025 10:32:50 +0200 Subject: [PATCH 4/6] Update src/ansys/dpf/core/server.py --- src/ansys/dpf/core/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/dpf/core/server.py b/src/ansys/dpf/core/server.py index f32cda172e5..ec535727648 100644 --- a/src/ansys/dpf/core/server.py +++ b/src/ansys/dpf/core/server.py @@ -53,7 +53,7 @@ LOCALHOST, RUNNING_DOCKER, AnyServerType, - BaseServer, + BaseServer, # noqa: F401 ) From b1851a9dae475ec9d767998e7c8b72654ff7ee53 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Wed, 1 Oct 2025 10:55:16 +0200 Subject: [PATCH 5/6] Update src/ansys/dpf/core/server.py --- src/ansys/dpf/core/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/dpf/core/server.py b/src/ansys/dpf/core/server.py index ec535727648..3435a2ae4f9 100644 --- a/src/ansys/dpf/core/server.py +++ b/src/ansys/dpf/core/server.py @@ -53,7 +53,7 @@ LOCALHOST, RUNNING_DOCKER, AnyServerType, - BaseServer, # noqa: F401 + BaseServer, # noqa: F401 # pylint: disable=unused-import ) From c68cab6b100cc4e1b47682cac4ffafef4bb51618 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Wed, 1 Oct 2025 11:53:41 +0200 Subject: [PATCH 6/6] Update src/ansys/dpf/core/server.py --- src/ansys/dpf/core/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ansys/dpf/core/server.py b/src/ansys/dpf/core/server.py index 3435a2ae4f9..fc14a0ac595 100644 --- a/src/ansys/dpf/core/server.py +++ b/src/ansys/dpf/core/server.py @@ -48,12 +48,12 @@ ServerConfig, ServerFactory, ) -from ansys.dpf.core.server_types import ( +from ansys.dpf.core.server_types import ( # noqa: F401 # pylint: disable=unused-import DPF_DEFAULT_PORT, LOCALHOST, RUNNING_DOCKER, AnyServerType, - BaseServer, # noqa: F401 # pylint: disable=unused-import + BaseServer, )