Spaces:
Sleeping
Sleeping
Commit
·
165ea49
1
Parent(s):
a33fe74
Remove logs
Browse files
app.py
CHANGED
|
@@ -8,8 +8,6 @@ def bump_probability(drawn_card_strings, special_cards_drawn):
|
|
| 8 |
# Convert strings from checkbox input to integers
|
| 9 |
drawn_cards = [int(card) for card in drawn_card_strings]
|
| 10 |
|
| 11 |
-
print(drawn_cards)
|
| 12 |
-
|
| 13 |
total_counts = {i: i for i in range(13)}
|
| 14 |
total_counts[0] = 1 # fix 0 to have 1 copy
|
| 15 |
|
|
|
|
| 8 |
# Convert strings from checkbox input to integers
|
| 9 |
drawn_cards = [int(card) for card in drawn_card_strings]
|
| 10 |
|
|
|
|
|
|
|
| 11 |
total_counts = {i: i for i in range(13)}
|
| 12 |
total_counts[0] = 1 # fix 0 to have 1 copy
|
| 13 |
|