From: John Mulligan Date: Wed, 21 Jun 2023 20:35:14 +0000 (-0400) Subject: pybind/mgr/cephadm: reformat a long input line X-Git-Tag: v19.0.0~711^2~4 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=6247438a37afdeae01db4b8b704024dc69b78ffa;p=ceph.git pybind/mgr/cephadm: reformat a long input line Use the parenthesized format with each import on a line for readability. Signed-off-by: John Mulligan --- diff --git a/src/pybind/mgr/cephadm/tests/test_services.py b/src/pybind/mgr/cephadm/tests/test_services.py index 25e557631e118..3b7a3570ffcf3 100644 --- a/src/pybind/mgr/cephadm/tests/test_services.py +++ b/src/pybind/mgr/cephadm/tests/test_services.py @@ -18,9 +18,22 @@ from cephadm.services.osd import OSDService from cephadm.services.monitoring import GrafanaService, AlertmanagerService, PrometheusService, \ NodeExporterService, LokiService, PromtailService from cephadm.module import CephadmOrchestrator -from ceph.deployment.service_spec import IscsiServiceSpec, MonitoringSpec, AlertManagerSpec, \ - ServiceSpec, RGWSpec, GrafanaSpec, SNMPGatewaySpec, IngressSpec, PlacementSpec, TracingSpec, \ - PrometheusSpec, CephExporterSpec, NFSServiceSpec, NvmeofServiceSpec +from ceph.deployment.service_spec import ( + AlertManagerSpec, + CephExporterSpec, + GrafanaSpec, + IngressSpec, + IscsiServiceSpec, + MonitoringSpec, + NFSServiceSpec, + NvmeofServiceSpec, + PlacementSpec, + PrometheusSpec, + RGWSpec, + SNMPGatewaySpec, + ServiceSpec, + TracingSpec, +) from cephadm.tests.fixtures import with_host, with_service, _run_cephadm, async_side_effect from ceph.utils import datetime_now