Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ iface = gr.Interface(
|
|
80 |
description=f"This is a demo of how to do simple *shared data persistence* in a Gradio Space, backed by a dataset repo.",
|
81 |
article=f"The dataset repo is [{DATASET_REPO_URL}]({DATASET_REPO_URL})",
|
82 |
)
|
83 |
-
iface.launch()
|
84 |
# -------
|
85 |
|
86 |
# Game settings
|
@@ -142,4 +142,7 @@ player_images.image([Image.open(card.image_location)
|
|
142 |
dealer_stats.write(dealer)
|
143 |
dealer_images.image([Image.open(card.image_location)
|
144 |
for card in dealer.cards], width=100)
|
|
|
|
|
|
|
145 |
result.write(game_play)
|
|
|
80 |
description=f"This is a demo of how to do simple *shared data persistence* in a Gradio Space, backed by a dataset repo.",
|
81 |
article=f"The dataset repo is [{DATASET_REPO_URL}]({DATASET_REPO_URL})",
|
82 |
)
|
83 |
+
#iface.launch()
|
84 |
# -------
|
85 |
|
86 |
# Game settings
|
|
|
142 |
dealer_stats.write(dealer)
|
143 |
dealer_images.image([Image.open(card.image_location)
|
144 |
for card in dealer.cards], width=100)
|
145 |
+
|
146 |
+
r=store_message("Aaron Wacker", game_play)
|
147 |
+
|
148 |
result.write(game_play)
|