Skip to content

Commit 6886f2b

Browse files
authored
fix: __repr__ method in vector.py (#903)
1 parent 2a16876 commit 6886f2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/firestore_v1/vector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __eq__(self, other: object) -> bool:
3939
return self._value == other._value
4040

4141
def __repr__(self):
42-
return f"Vector<{str(self.value)[1:-1]}>"
42+
return f"Vector<{str(self._value)[1:-1]}>"
4343

4444
def to_map_value(self):
4545
return {"__type__": "__vector__", "value": self._value}

0 commit comments

Comments
 (0)