mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-08 03:58:23 +00:00
Fixes #5270. The for-loop iterating over ENV_VARS used 'provider' as its loop variable, which shadowed the 'provider' function parameter. Renamed the loop variable to 'env_provider' so the original parameter value is preserved throughout the function. Added three regression tests to verify the fix. Co-Authored-By: João <joao@crewai.com>