Skip to content

Commit 1a366d4

Browse files
committed
Fix tests
1 parent ce6c53c commit 1a366d4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/runloop_api_client/sdk/_types.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Union, Callable, Optional
1+
from typing import Literal, Union, Callable, Optional
22
from typing_extensions import TypedDict
33

44
from ..types import (
@@ -219,6 +219,9 @@ class ScenarioPreview(ScenarioView):
219219
input_context: InputContextPreview # type: ignore[assignment]
220220
"""The input context for the Scenario."""
221221

222+
status: Optional[Literal["active", "archived"]] = None # type: ignore[assignment]
223+
"""Status is not set for previews."""
224+
222225

223226
class SDKBenchmarkCreateParams(BenchmarkCreateParams, LongRequestOptions):
224227
pass

0 commit comments

Comments
 (0)