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 a2e24e6 commit aa13b6dCopy full SHA for aa13b6d
sdk/ai/azure-ai-projects/tests/samples/sample_executor.py
@@ -12,7 +12,7 @@
12
import importlib.util
13
import functools
14
from dataclasses import dataclass, field
15
-from typing import overload, Union
+from typing import overload, Union, Optional
16
from pydantic import BaseModel
17
18
import json
@@ -472,7 +472,7 @@ class AdditionalSampleTestDetail:
472
473
sample_filename: str
474
env_vars: dict[str, str]
475
- _test_id: str | None = field(default=None, repr=False)
+ _test_id: Optional[str] = field(default=None, repr=False)
476
477
def __init__(
478
self,
0 commit comments