fix: Update model sanity check output format

This commit is contained in:
Paul Gauthier 2024-09-23 11:32:52 -07:00 committed by Paul Gauthier (aider)
parent ba0a328196
commit d518493bb9

View file

@ -851,7 +851,7 @@ def sanity_check_model(io, model):
io.tool_warning(f"Warning: {model} expects these environment variables")
for key in model.missing_keys:
value = os.environ.get(key, "")
status = "Set" if value else "Not set"
status = "Set" if value else "Not set"
io.tool_output(f"- {key}: {status}")
if platform.system() == "Windows" or True: