Skip to content

Commit fab1de8

Browse files
authored
Update vector3.py
1 parent c1d694b commit fab1de8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

3_advanced/chapter13/examples/vector3.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ def __init__(self, vals):
1111
# print("Assigned values ", vals, " to vector.")
1212

1313
"""
14-
String Function
15-
16-
Converts the object to a string in readable format for programmers
17-
"""
14+
String Function
15+
16+
Converts the object to a string in readable format for programmers
17+
"""
1818

1919
def __str__(self):
2020
return str(self.vals)

0 commit comments

Comments
 (0)