Skip to content

Commit

Permalink
add newline to games/ files after linter fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaly Chasovskikh committed Apr 5, 2024
1 parent 4752528 commit 9250ed9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion brain_games/games/calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def calculation():
print(lost_message)
print(f"Let's try again, {name}!")
break
print(f"Congratulations, {name}!")
print(f"Congratulations, {name}!")
2 changes: 1 addition & 1 deletion brain_games/games/gcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def gcd():
print(lost_message)
print(f"Let's try again, {name}!")
break
print(f"Congratulations, {name}!")
print(f"Congratulations, {name}!")
2 changes: 1 addition & 1 deletion brain_games/games/prime.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def prime():
print(lost_message)
print(f"Let's try again, {name}!")
break
print(f"Congratulations, {name}!")
print(f"Congratulations, {name}!")
2 changes: 1 addition & 1 deletion brain_games/games/progression.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def progression():
print(lost_message)
print(f"Let's try again, {name}!")
break
print(f"Congratulations, {name}!")
print(f"Congratulations, {name}!")

0 comments on commit 9250ed9

Please sign in to comment.