Skip to content

Commit

Permalink
PEP 8 fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbcunc committed Apr 9, 2015
1 parent ea26775 commit 3a3abc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primer/primer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def primes(n):
p = []
if n > 0:
p = [2, ]
for x in range(1,n):
for x in range(1, n):
q = p[-1] + 1
while True:
for y in p:
Expand Down

0 comments on commit 3a3abc8

Please sign in to comment.