Skip to content

Commit ab285e0

Browse files
committed
fix linting errors
1 parent 264bc7a commit ab285e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brain_games/games/progression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def get_random_sequence_and_answer():
1313
if i == 0:
1414
sequence.append(random.randint(1, 16))
1515
else:
16-
sequence += [sequence[i-1] + random_step]
16+
sequence += [sequence[i - 1] + random_step]
1717

1818
question = ''
1919
answer = random.choice(sequence)

0 commit comments

Comments
 (0)