Skip to content

Commit f90305e

Browse files
committed
Fix code style issues with Black
1 parent 833252b commit f90305e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

3_advanced/chapter13/examples/vector.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ class Vector:
77
"""
88

99
def __init__(self, vals):
10-
self.vals = vals # We're using the keyword self to create a field/property
10+
self.vals = (
11+
vals # We're using the keyword self to create a field/property
12+
)
1113
print("Assigned values ", vals, " to vector.")
1214

1315
"""

0 commit comments

Comments
 (0)