'Refactored by Sourcery'

This commit is contained in:
Sourcery AI
2023-05-24 23:55:27 +00:00
committed by amjad
parent 7c1e336f14
commit 71d02673a9
70 changed files with 582 additions and 835 deletions

View File

@@ -59,7 +59,7 @@ def input_betting() -> int:
elif b < 1:
print("Minium bet is $1")
beeping()
return int(b)
return b
def beeping() -> None:
@@ -113,7 +113,7 @@ def adjust_profits(wheel: List[str], m: int, profits: int) -> int:
else:
# three different fruits
print("\nYou Lost.")
profits = profits - m
profits -= m
return profits