Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sanders41 committed Dec 23, 2024
1 parent 65c8f6b commit 2f0cab0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backend/tests/core/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ def test_temperature(temperature):
POSTGRES_HOST="some_host",
POSTGRES_USER="pg",
POSTGRES_PASSWORD=SecretStr("pgpassword"),
VALKEY_HOST="valkey",
VALKEY_PASSWORD=SecretStr("valkeypassword"),
OPENAI_API_KEY=SecretStr("some_key"),
TEMPERATURE=temperature,
)
Expand All @@ -30,6 +32,8 @@ def test_invalid_temperature(temperature):
POSTGRES_HOST="some_host",
POSTGRES_USER="pg",
POSTGRES_PASSWORD=SecretStr("pgpassword"),
VALKEY_HOST="valkey",
VALKEY_PASSWORD=SecretStr("valkeypassword"),
OPENAI_API_KEY=SecretStr("some_key"),
TEMPERATURE=temperature,
)

0 comments on commit 2f0cab0

Please sign in to comment.