Skip to content

Commit e472c95

Browse files
committed
fix(integrations): suppress untyped Daytona close call
Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com>
1 parent 41b3ad0 commit e472c95

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/google/adk/integrations/daytona/_daytona_environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def close(self) -> None:
9999
if self._client is not None:
100100
# Close the AsyncDaytona client to release its underlying HTTP
101101
# sessions and avoid leaking sockets across create/close cycles.
102-
await self._client.close()
102+
await self._client.close() # type: ignore[no-untyped-call]
103103
self._client = None
104104
self._is_initialized = False
105105

0 commit comments

Comments
 (0)