fix: Remove always-true condition for Windows env var message

This commit is contained in:
Paul Gauthier 2024-12-14 09:50:26 -08:00 committed by Paul Gauthier (aider)
parent 60aca3a241
commit 85b1303460

View file

@ -1232,7 +1232,7 @@ def sanity_check_model(io, model):
status = "Set" if value else "Not set"
io.tool_output(f"- {key}: {status}")
if platform.system() == "Windows" or True:
if platform.system() == "Windows":
io.tool_output(
"If you just set these environment variables using `setx` you may need to restart"
" your terminal or command prompt for the changes to take effect."