Spaces:
Runtime error
Runtime error
kwabs22
commited on
Commit
·
b45a391
1
Parent(s):
7878324
Refactor Proto Assist accordion to absorb mess
Browse files
app.py
CHANGED
|
@@ -450,12 +450,12 @@ def convert_timeline_to_game_structure(timeline):
|
|
| 450 |
|
| 451 |
return wrapped_structure
|
| 452 |
|
| 453 |
-
def generate_game_structures(timeline_with_media
|
| 454 |
|
| 455 |
game_structure_with_media = convert_timeline_to_game_structure(timeline_with_media)
|
| 456 |
-
game_structure_without_media = convert_timeline_to_game_structure(timeline_without_media)
|
| 457 |
|
| 458 |
-
return game_structure_with_media
|
| 459 |
|
| 460 |
|
| 461 |
#-----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
| 450 |
|
| 451 |
return wrapped_structure
|
| 452 |
|
| 453 |
+
def generate_game_structures(timeline_with_media): #, timeline_without_media):
|
| 454 |
|
| 455 |
game_structure_with_media = convert_timeline_to_game_structure(timeline_with_media)
|
| 456 |
+
#game_structure_without_media = convert_timeline_to_game_structure(timeline_without_media)
|
| 457 |
|
| 458 |
+
return game_structure_with_media #, game_structure_without_media
|
| 459 |
|
| 460 |
|
| 461 |
#-----------------------------------------------------------------------------------------------------------------------------------
|