We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823092d commit ba50c85Copy full SHA for ba50c85
1 file changed
examples/local_example.py
@@ -16,6 +16,7 @@
16
17
import os
18
import sys
19
+from typing import Optional
20
21
from stagehand import Stagehand
22
@@ -31,7 +32,7 @@ def main() -> None:
31
32
local_ready_timeout_s=30.0,
33
)
34
- session_id: str | None = None
35
+ session_id: Optional[str] = None
36
37
try:
38
print("⏳ Starting local session (this will start the embedded SEA binary)...")
0 commit comments