]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/cephadm: update formatting of get_dependencies arguments
authorJohn Mulligan <jmulligan@redhat.com>
Mon, 9 Mar 2026 18:53:50 +0000 (14:53 -0400)
committerJohn Mulligan <jmulligan@redhat.com>
Thu, 26 Mar 2026 13:31:38 +0000 (09:31 -0400)
Use the contemporary black-compatible formatting of multiple long
arguments for the get_dependencies function.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
src/pybind/mgr/cephadm/services/cephadmservice.py

index af14355e2610971dd1af2b537954d79bb8fd0567..abb4481d93a4383fa6a1c07b1104863ae2c853ce 100644 (file)
@@ -317,9 +317,12 @@ class CephadmService(metaclass=ABCMeta):
         pass
 
     @classmethod
-    def get_dependencies(cls, mgr: "CephadmOrchestrator",
-                         spec: Optional[ServiceSpec] = None,
-                         daemon_type: Optional[str] = None) -> List[str]:
+    def get_dependencies(
+        cls,
+        mgr: "CephadmOrchestrator",
+        spec: Optional[ServiceSpec] = None,
+        daemon_type: Optional[str] = None,
+    ) -> List[str]:
         return []
 
     def __init__(self, mgr: "CephadmOrchestrator"):