Spaces:
Running
on
Zero
Running
on
Zero
kwabs22
commited on
Commit
·
6cf6f46
1
Parent(s):
7f61e6c
Refactor Proto Assist accordion to absorb mess
Browse files
app.py
CHANGED
@@ -353,7 +353,6 @@ def show_elements_json_input(json_input):
|
|
353 |
def update_json(*current_values):
|
354 |
updated_data = {"masterlocation1": {}}
|
355 |
locations = [loc for loc in masterlocation1.keys() if loc != 'end']
|
356 |
-
print(locations)
|
357 |
for i, location in enumerate(locations):
|
358 |
updated_data["masterlocation1"][location] = {
|
359 |
"description": current_values[i*num_current_unique_fields],
|
@@ -367,7 +366,7 @@ def show_elements_json_input(json_input):
|
|
367 |
return json.dumps(updated_data, indent=2), #json.dumps(updated_data, default=lambda o: o.__dict__, indent=2)
|
368 |
|
369 |
update_button = gr.Button("Update JSON")
|
370 |
-
json_output = gr.Textbox(label="Updated JSON", lines=10)
|
371 |
json_output_code = gr.Code(lines=10)
|
372 |
|
373 |
update_button.click(update_json, inputs=outputs, outputs=[json_output_code]) #, json_output_code])
|
|
|
353 |
def update_json(*current_values):
|
354 |
updated_data = {"masterlocation1": {}}
|
355 |
locations = [loc for loc in masterlocation1.keys() if loc != 'end']
|
|
|
356 |
for i, location in enumerate(locations):
|
357 |
updated_data["masterlocation1"][location] = {
|
358 |
"description": current_values[i*num_current_unique_fields],
|
|
|
366 |
return json.dumps(updated_data, indent=2), #json.dumps(updated_data, default=lambda o: o.__dict__, indent=2)
|
367 |
|
368 |
update_button = gr.Button("Update JSON")
|
369 |
+
#json_output = gr.Textbox(label="Updated JSON", lines=10)
|
370 |
json_output_code = gr.Code(lines=10)
|
371 |
|
372 |
update_button.click(update_json, inputs=outputs, outputs=[json_output_code]) #, json_output_code])
|