From 13baad75f599c06f12dde335892713ef6a2fa57e Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 9 Nov 2023 13:49:03 -0500 Subject: [PATCH] cephadm: sort imports import daemons/__init__.py Signed-off-by: John Mulligan --- src/cephadm/cephadmlib/daemons/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cephadm/cephadmlib/daemons/__init__.py b/src/cephadm/cephadmlib/daemons/__init__.py index 3931cdf14b6..cf572d487c9 100644 --- a/src/cephadm/cephadmlib/daemons/__init__.py +++ b/src/cephadm/cephadmlib/daemons/__init__.py @@ -1,12 +1,12 @@ +from .ceph import Ceph, OSD, CephExporter from .custom import CustomContainer -from .tracing import Tracing from .ingress import HAproxy, Keepalived -from .nvmeof import CephNvmeof from .iscsi import CephIscsi -from .nfs import NFSGanesha from .monitoring import Monitoring +from .nfs import NFSGanesha +from .nvmeof import CephNvmeof from .snmp import SNMPGateway -from .ceph import Ceph, OSD, CephExporter +from .tracing import Tracing __all__ = [ 'Ceph', -- 2.39.5