Skip to content

Commit

Permalink
fixed python 27 issue with kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
tasherif-msft committed Aug 31, 2020
1 parent 6034ca6 commit f800b56
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -935,9 +935,9 @@ def exists(self, **kwargs):
"""
try:
blob_props = self._client.blob.get_properties(
**kwargs,
snapshot=self.snapshot,
cls=deserialize_blob_properties)
cls=deserialize_blob_properties,
**kwargs)
if blob_props and blob_props.is_current_version or blob_props and self.snapshot:
return True
return False
Expand Down

0 comments on commit f800b56

Please sign in to comment.