Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,7 +46,7 @@ for dice_type in DICE_TYPES:
|
|
46 |
history["coin_tokens"].append(history["coin_tokens"][-1] + coin_tokens_added)
|
47 |
|
48 |
st.write("๐ฐ๐ Token Accumulation:")
|
49 |
-
plot_tokens(history["health_tokens"], history["coin_tokens"])
|
50 |
df = pd.concat([pd.DataFrame(history["roll_history"]), pd.DataFrame(history["health_tokens"], columns=["Health Tokens"]), pd.DataFrame(history["coin_tokens"], columns=["Coin Tokens"])], axis=1)
|
51 |
timestamp = datetime.now().strftime("%m-%d-%Y-%H-%M-%S")
|
52 |
filename = f"{username}_{timestamp}.csv"
|
|
|
46 |
history["coin_tokens"].append(history["coin_tokens"][-1] + coin_tokens_added)
|
47 |
|
48 |
st.write("๐ฐ๐ Token Accumulation:")
|
49 |
+
#plot_tokens(history["health_tokens"], history["coin_tokens"])
|
50 |
df = pd.concat([pd.DataFrame(history["roll_history"]), pd.DataFrame(history["health_tokens"], columns=["Health Tokens"]), pd.DataFrame(history["coin_tokens"], columns=["Coin Tokens"])], axis=1)
|
51 |
timestamp = datetime.now().strftime("%m-%d-%Y-%H-%M-%S")
|
52 |
filename = f"{username}_{timestamp}.csv"
|