Skip to content

Commit aa13b6d

Browse files
committed
fix
1 parent a2e24e6 commit aa13b6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/ai/azure-ai-projects/tests/samples/sample_executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import importlib.util
1313
import functools
1414
from dataclasses import dataclass, field
15-
from typing import overload, Union
15+
from typing import overload, Union, Optional
1616
from pydantic import BaseModel
1717

1818
import json
@@ -472,7 +472,7 @@ class AdditionalSampleTestDetail:
472472

473473
sample_filename: str
474474
env_vars: dict[str, str]
475-
_test_id: str | None = field(default=None, repr=False)
475+
_test_id: Optional[str] = field(default=None, repr=False)
476476

477477
def __init__(
478478
self,

0 commit comments

Comments
 (0)