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 42a8dd4 commit c92f9f3Copy full SHA for c92f9f3
tests/v2/test_inference_response.py
@@ -1,4 +1,5 @@
1
import json
2
+from typing import Tuple
3
4
import pytest
5
@@ -13,7 +14,7 @@
13
14
from tests.test_inputs import V2_DATA_DIR
15
16
-def _get_samples(name: str) -> tuple[dict, str]:
17
+def _get_samples(name: str) -> Tuple[dict, str]:
18
with (V2_DATA_DIR / "inference" / f"{name}.json").open("r", encoding="utf-8") as fh:
19
json_sample = json.load(fh)
20
try:
0 commit comments