Skip to content

Commit

Permalink
Fix: código precisava do transformador int()
Browse files Browse the repository at this point in the history
  • Loading branch information
controlado committed Jul 20, 2022
1 parent 72462d0 commit 9dfc571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def unlock_champions_ea(self, ea_cost: int) -> list:
if __name__ == "__main__":
tasks = Tasks()
response = tasks.unlock_champions_ea(
input("Digite um valor inteiro da quantia de essências ")
int(input("Digite um valor inteiro da quantia de essências "))
)

input(f"{len(response)} campeões foram comprados!")

0 comments on commit 9dfc571

Please sign in to comment.