Skip to content

Commit db2fa9b

Browse files
committed
Fix code style issues with Black
1 parent 4d9bbe1 commit db2fa9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1_beginner/chapter6/solutions/names.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Some other possible answers:
1515
# group = people[0, 5, 2] or people[0, len(people), 2]
1616

17-
group = people[0:len(people):2]
17+
group = people[0 : len(people) : 2]
1818

1919
print(people)
2020
print(group)

0 commit comments

Comments
 (0)