From 35028e15789dc3600143a434301625d094b24475 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 13 Dec 2023 16:05:27 -0500 Subject: [PATCH] mgr/orchestrator: fix the sorting of the imports While ceph doesn't enforce sorted imports I prefer them when possible. I had once sorted these imports but then nvmeof came along an ruined things. Put nvmeof back in it's place. Signed-off-by: John Mulligan --- src/pybind/mgr/orchestrator/_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/orchestrator/_interface.py b/src/pybind/mgr/orchestrator/_interface.py index f0fb2c42906..7e1b57466e3 100644 --- a/src/pybind/mgr/orchestrator/_interface.py +++ b/src/pybind/mgr/orchestrator/_interface.py @@ -38,11 +38,11 @@ from ceph.deployment.service_spec import ( IscsiServiceSpec, MDSSpec, NFSServiceSpec, + NvmeofServiceSpec, RGWSpec, SNMPGatewaySpec, ServiceSpec, TunedProfileSpec, - NvmeofServiceSpec ) from ceph.deployment.drive_group import DriveGroupSpec from ceph.deployment.hostspec import HostSpec, SpecValidationError -- 2.39.5