We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5f6f2 commit cda4dadCopy full SHA for cda4dad
tests/integration/conftest.py
@@ -58,8 +58,8 @@ def api_keys() -> APIKeys:
58
if key_value is None:
59
raise ValueError(f"{key_name} is not set in .env file")
60
api_keys = APIKeys(
61
- openai=openai_key,
62
- humanloop=humanloop_key,
+ openai=openai_key, # type: ignore [arg-type]
+ humanloop=humanloop_key, # type: ignore [arg-type]
63
)
64
for key, value in asdict(api_keys).items():
65
if value is None:
0 commit comments