linter more

This commit is contained in:
Nikolas
2024-09-13 09:05:29 -07:00
parent 635a4c5080
commit 93820c05aa

View File

@@ -61,7 +61,8 @@ def install_miniconda() -> str:
try:
output = subprocess.check_output(command, stderr=subprocess.PIPE, text=True)
except Exception as err:
raise Exception(f"could not install miniconda using command {" ".join(command)}") from err
command_string = " ".join(command)
raise Exception(f"could not install miniconda using command {command_string}") from err
return output