style: Fix formatting in models.py

This commit is contained in:
Paul Gauthier (aider) 2024-08-26 14:40:29 -07:00
parent b51b5cf12d
commit 2e573af1d8

View file

@ -730,7 +730,7 @@ def sanity_check_model(io, model):
show = True
io.tool_error(f"Model {model}: Environment variables status:")
for key in model.missing_keys:
value = os.environ.get(key, '')
value = os.environ.get(key, "")
status = "✓ Set" if value else "✗ Not set"
io.tool_error(f"- {key}: {status}")