Skip to content

Commit 7cf9fbf

Browse files
committed
fix: address mypy errors
1 parent acf9752 commit 7cf9fbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/api_core/retry/retry_streaming_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ async def retry_target_stream(
164164
# TODO: Remove this conditional once the minimum supported Python version is 3.11
165165
if sys.version_info[:3] >= (3, 11, 0):
166166
await cast(AsyncGenerator["_Y", None], target_iterator).athrow(
167-
sys.exception())
167+
sys.exception()) # type: ignore
168168
else:
169169
await cast(AsyncGenerator["_Y", None], target_iterator).athrow(
170170
*sys.exc_info())

0 commit comments

Comments
 (0)