Skip to content

Commit

Permalink
Merge pull request #101 from SpotlightForBugs/deepsource-fix-30fb7c1a
Browse files Browse the repository at this point in the history
Remove blank lines after docstring
  • Loading branch information
SpotlightForBugs authored Aug 22, 2022
2 parents 86ea878 + aca038f commit 4752add
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions werwolf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def createDict():
:return: A dictionary that assigns the number of players to each role
"""

with open("spieler_anzahl.txt", "r") as f:
spieleranzahl = f.read()
try:
Expand Down Expand Up @@ -230,7 +229,6 @@ def hexe_darf_toeten() -> bool:
:return: A boolean value
"""

with open("hexe_kann.txt", "r") as hexe_kann:
hexe_kann_text = hexe_kann.read()
if str(2) in hexe_kann_text:
Expand Down Expand Up @@ -463,7 +461,6 @@ def aktion_verfuegbar_ist_tot(player: str) -> bool:
:return: True if the player can do an action
"""

if war_oder_ist_rolle(player, "Hexe") is True:
if hexe_darf_toeten() is True:
return True
Expand Down

0 comments on commit 4752add

Please sign in to comment.