Skip to content

Commit f35ef2b

Browse files
committed
Typing, other: Any
1 parent ceb6786 commit f35ef2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bson/binary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def __init__(self, data: Sequence[float | int], dtype: BinaryVectorDtype, paddin
248248
def __repr__(self) -> str:
249249
return f"BinaryVector(dtype={self.dtype}, padding={self.padding}, data={self.data})"
250250

251-
def __eq__(self, other: BinaryVector) -> bool:
251+
def __eq__(self, other: Any) -> bool:
252252
if not isinstance(other, BinaryVector):
253253
return False
254254
return (

0 commit comments

Comments
 (0)