Don't allow None for org id (partial mypy only change) more to come (#2613)

This commit is contained in:
Asher Foa
2025-06-05 19:00:20 -04:00
committed by GitHub
parent 990b1c921f
commit e258c6332d
5 changed files with 5 additions and 5 deletions

View File

@@ -463,7 +463,7 @@ class AgentFunction:
return
async def validate_task_execution(
self, organization_id: str | None = None, task_id: str | None = None, task_version: str | None = None
self, organization_id: str, task_id: str | None = None, task_version: str | None = None
) -> None:
return