Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit cd6095e

Browse files
chore: Update sessions.py to use ClientTimeout
chore: Update sessions.py to use ClientTimeout
1 parent ae56ecd commit cd6095e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/auth/aio/transport/sessions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ async def request(
283283
)
284284
)
285285
actual_timeout: float = 0.0
286-
if ClientTimeout is not None and isinstance(timeout, aiohttp.ClientTimeout):
286+
if ClientTimeout is not None and isinstance(timeout, ClientTimeout):
287287
actual_timeout = timeout.total if timeout.total is not None else 0.0
288288
elif isinstance(timeout, (int, float)):
289289
actual_timeout = float(timeout)

0 commit comments

Comments
 (0)