From 23777993bf61ae9f781eb6908f700e3904e62351 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Sat, 9 Mar 2024 11:37:27 -0500 Subject: [PATCH] cephadm: black format daemons/node_proxy.py Signed-off-by: John Mulligan --- src/cephadm/cephadmlib/daemons/node_proxy.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/cephadm/cephadmlib/daemons/node_proxy.py b/src/cephadm/cephadmlib/daemons/node_proxy.py index c197ded3ff6c..f7f0097e7b85 100644 --- a/src/cephadm/cephadmlib/daemons/node_proxy.py +++ b/src/cephadm/cephadmlib/daemons/node_proxy.py @@ -81,9 +81,17 @@ class NodeProxy(ContainerDaemonForm): data_dir = self.identity.data_dir(ctx.data_dir) # TODO: update this when we have the actual location # in the ceph container we are going to keep node-proxy - mounts.update({os.path.join(data_dir, 'node-proxy.json'): '/usr/share/ceph/node-proxy.json:z'}) + mounts.update( + { + os.path.join( + data_dir, 'node-proxy.json' + ): '/usr/share/ceph/node-proxy.json:z' + } + ) - def customize_process_args(self, ctx: CephadmContext, args: List[str]) -> None: + def customize_process_args( + self, ctx: CephadmContext, args: List[str] + ) -> None: # TODO: this corresponds with the mount location of # the config in _get_container_mounts above. They # will both need to be updated when we have a proper -- 2.47.3