Skip to content

Commit 5f2dbe5

Browse files
authored
Update lib.py
1 parent 90e9b24 commit 5f2dbe5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linear_algebra/src/lib.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ def angle(self, other: Vector, deg: bool = False) -> float:
185185

186186
def __eq__(self, vector: Vector) -> bool:
187187
"""
188-
Returns True if the given vector is equal to the current vector, else False
189-
The vectors are considered equal if they have the same length and corresponding components are equal
188+
returns True if the given vector is equal to the current vector, else False
189+
the vectors are considered equal if they have the same length and corresponding components are equal
190190
"""
191191
if len(self) != len(vector):
192192
return False

0 commit comments

Comments
 (0)