Skip to content

Commit 4d57f60

Browse files
Fix lint issue
1 parent bae1724 commit 4d57f60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/api_core/retry/retry_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def build_retry_error(
166166
elif exc_list:
167167
# return most recent exception encountered and its cause
168168
final_exc = exc_list[-1]
169-
cause = getattr(final_exc, '__cause__', None)
169+
cause = getattr(final_exc, "__cause__", None)
170170
return final_exc, cause
171171
else:
172172
# no exceptions were given in exc_list. Raise generic RetryError

0 commit comments

Comments
 (0)