Skip to content

Commit 0ca770e

Browse files
authored
Update lib.py
1 parent 647af8c commit 0ca770e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linear_algebra/src/lib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def angle(self, other: Vector, deg: bool = False) -> float:
183183
else:
184184
return math.acos(num / den)
185185

186-
def __eq__(self, vector: Vector) -> bool:
186+
def __eq__(self, vector: object) -> bool:
187187
"""
188188
performs the comparison between two vectors
189189
"""

0 commit comments

Comments
 (0)