Skip to content

Commit cda4dad

Browse files
author
Andrei Bratu
committed
added mypy skips
1 parent 6b5f6f2 commit cda4dad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def api_keys() -> APIKeys:
5858
if key_value is None:
5959
raise ValueError(f"{key_name} is not set in .env file")
6060
api_keys = APIKeys(
61-
openai=openai_key,
62-
humanloop=humanloop_key,
61+
openai=openai_key, # type: ignore [arg-type]
62+
humanloop=humanloop_key, # type: ignore [arg-type]
6363
)
6464
for key, value in asdict(api_keys).items():
6565
if value is None:

0 commit comments

Comments
 (0)