Skip to content

Commit

Permalink
Fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Jul 30, 2024
1 parent e1ddec4 commit 2dd8438
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lesson8/test_file.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from random import randint

HEADS = 1
TAILS = 2

print("\nTen coin flips:")
print("-" * 30)
for _ in range(10):
if randint(1,2) == HEADS:
if randint(1, 2) == HEADS:
print("HEADS")
else:
print("TAILS")
Expand Down

0 comments on commit 2dd8438

Please sign in to comment.