Skip to content

Commit a39be08

Browse files
committed
add missing return statement
1 parent 3262e8b commit a39be08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/auth/aio/transport/aiohttp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _remaining_time():
4646
remaining = total_timeout - elapsed
4747
if remaining <= 0:
4848
raise TimeoutError(f"Context manager exceeded the configured timeout of {total_timeout}s.")
49-
remaining
49+
return remaining
5050

5151
async def with_timeout(coro):
5252
try:

0 commit comments

Comments
 (0)