Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor if-statement change, pt.2
Browse files Browse the repository at this point in the history
Co-authored-by: Gregory Horvath <[email protected]>
justinthelaw and gphorvath authored Oct 1, 2024
1 parent 855cdd7 commit 4bd7b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/client.py
Original file line number Diff line number Diff line change
@@ -169,7 +169,7 @@ def get_leapfrogai_api_key() -> str:

api_key = os.getenv("LEAPFROGAI_API_KEY") or os.getenv("SUPABASE_USER_JWT")

if api_key is None:
if not api_key:
logging.warning(
"LEAPFROGAI_API_KEY or SUPABASE_USER_JWT not set, automatically generating test user."
)

0 comments on commit 4bd7b38

Please sign in to comment.