DailyRunnerArguments: make token optional

DailyTransport can get a None token value.
This commit is contained in:
Aleix Conchillo Flaqué
2025-08-05 15:46:12 -07:00
parent 8fe906438a
commit f14cbae9b5

View File

@@ -11,7 +11,7 @@ information to bot functions.
"""
from dataclasses import dataclass, field
from typing import Any
from typing import Any, Optional
from fastapi import WebSocket
@@ -39,7 +39,7 @@ class DailyRunnerArguments(RunnerArguments):
"""
room_url: str
token: str
token: Optional[str]
body: Any