]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cephadm: sort imports import daemons/__init__.py
authorJohn Mulligan <jmulligan@redhat.com>
Thu, 9 Nov 2023 18:49:03 +0000 (13:49 -0500)
committerJohn Mulligan <jmulligan@redhat.com>
Thu, 30 Nov 2023 21:55:59 +0000 (16:55 -0500)
Signed-off-by: John Mulligan <jmulligan@redhat.com>
src/cephadm/cephadmlib/daemons/__init__.py

index 3931cdf14b614bf748094c2c1472e300ae916b7c..cf572d487c9bdede9eeaec08410eb28d4feaa064 100644 (file)
@@ -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',