Skip to content

Commit c92f9f3

Browse files
committed
fix old python
1 parent 42a8dd4 commit c92f9f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/v2/test_inference_response.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import json
2+
from typing import Tuple
23

34
import pytest
45

@@ -13,7 +14,7 @@
1314
from tests.test_inputs import V2_DATA_DIR
1415

1516

16-
def _get_samples(name: str) -> tuple[dict, str]:
17+
def _get_samples(name: str) -> Tuple[dict, str]:
1718
with (V2_DATA_DIR / "inference" / f"{name}.json").open("r", encoding="utf-8") as fh:
1819
json_sample = json.load(fh)
1920
try:

0 commit comments

Comments
 (0)