Skip to content

Commit 15ce2f6

Browse files
author
Dan Finn
committed
parens not needed there
1 parent 39ec257 commit 15ce2f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

character_pyramid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def create_pyramid(character, size):
1515
if increment:
1616
print character * loop_counter
1717
loop_counter += 1
18-
if (loop_counter == size):
18+
if loop_counter == size:
1919
# You've reached the top, start heading down the other side
2020
print character * loop_counter
2121
increment = 0

0 commit comments

Comments
 (0)