Skip to content

Commit

Permalink
[pre-commit.ci] Apply automatic pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jan 16, 2025
1 parent 9e7cbaa commit 5bd0b5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def verify_ssl() -> bool:
other inputs, ssl verification is enabled.
"""
verify = os.environ.get("CONDA_STORE_TEST_VERIFY_SSL", "true")
return not verify.lower() in ("0", "false")
return verify.lower() not in ("0", "false")


@pytest.mark.user_journey
Expand Down

0 comments on commit 5bd0b5e

Please sign in to comment.