refactor: Indent ... for visual purposes (#7744)

This commit is contained in:
Caeden Perelli-Harris
2022-10-27 18:42:30 +01:00
committed by GitHub
parent e8915097c4
commit 9bba42eca8
46 changed files with 134 additions and 134 deletions

View File

@ -168,7 +168,7 @@ class Vector:
9.539392014169456
>>> Vector([]).euclidean_length()
Traceback (most recent call last):
...
...
Exception: Vector is empty
"""
if len(self.__components) == 0:
@ -186,7 +186,7 @@ class Vector:
85.40775111366095
>>> Vector([3, 4, -1]).angle(Vector([2, -1]))
Traceback (most recent call last):
...
...
Exception: invalid operand!
"""
num = self * other