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 7f899e0 commit c27bfb8Copy full SHA for c27bfb8
simvue/run.py
@@ -85,12 +85,14 @@ class Run:
85
"""
86
87
@pydantic.validate_call
88
- def __init__(self, mode: typing.Literal["online", "offline"] = "online") -> None:
+ def __init__(
89
+ self, mode: typing.Literal["online", "offline", "disabled"] = "online"
90
+ ) -> None:
91
"""Initialise a new Simvue run
92
93
Parameters
94
----------
- mode : Literal['online', 'offline'], optional
95
+ mode : Literal['online', 'offline', 'disabled'], optional
96
mode of running, by default "online"
97
98
self._uuid: str = f"{uuid.uuid4()}"
0 commit comments