Skip to content

Commit

Permalink
fix client is None
Browse files Browse the repository at this point in the history
  • Loading branch information
d710055071 committed Dec 1, 2023
1 parent 5e83d87 commit 8e9e67f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/python-wrapper/lakefs/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def object(self, path: str) -> StoredObject: # pylint: disable=C0103
:param path: The object's path
"""
return StoredObject(self._repo_id, self._id, path)
return StoredObject(self._repo_id, self._id, path,self._client)

def __str__(self) -> str:
return self._id
Expand Down

0 comments on commit 8e9e67f

Please sign in to comment.