Skip to content

Commit 0d5725d

Browse files
Apply suggestion from @greptile-apps[bot]
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
1 parent 355b34c commit 0d5725d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cloudai/systems/kubernetes/kubernetes_installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def is_installed_one(self, item: Installable) -> InstallStatusResult:
124124
).read_text() == item.src.read_text():
125125
item.installed_path = self.system.install_path / item.src.name
126126
return InstallStatusResult(True)
127-
return InstallStatusResult(False, f"File {item.installed_path} does not exist")
127+
return InstallStatusResult(False, f"File {self.system.install_path / item.src.name} does not exist")
128128
elif isinstance(item, HFModel):
129129
return self.hf_model_manager.is_model_downloaded(item)
130130
return InstallStatusResult(False, f"Unsupported item type: {type(item)}")

0 commit comments

Comments
 (0)