Skip to content

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 2be3c33 commit 5a2a7ad
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 5a2a7ad

Please sign in to comment.