Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

Commit

Permalink
fix: handle AttributeError in automl_v1beta1.TablesClient (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Feb 25, 2022
1 parent 46dd7d3 commit 0cd309f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def __process_request_kwargs(self, request, **kwargs):
try:
setattr(request, key, value)
method_kwargs.pop(key)
except KeyError:
except (AttributeError, KeyError):
continue

return method_kwargs
Expand Down

0 comments on commit 0cd309f

Please sign in to comment.