Skip to content

Commit f0f7d9b

Browse files
cephadm: fix f-string expression formatting
Fix extra white space found in a f-string that was flagged by a newer version of flake8. Part of an effort to get ceph tox environments passing on Python 3.12. Signed-off-by: John Mulligan <[email protected]>
1 parent a141ffb commit f0f7d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cephadm/cephadmlib/daemon_identity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def sidecar_service_name(self) -> str:
157157
)
158158

159159
def sidecar_script(self, base_data_dir: Union[str, os.PathLike]) -> str:
160-
sname = f'sidecar-{ self.subcomponent }.run'
160+
sname = f'sidecar-{self.subcomponent}.run'
161161
return str(pathlib.Path(self.data_dir(base_data_dir)) / sname)
162162

163163
@property

0 commit comments

Comments
 (0)