gloignon commited on
Commit
5c5f1db
·
verified ·
1 Parent(s): 96cf461

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,8 +42,8 @@ def compute_pca(data):
42
 
43
  def text_editor_app():
44
  with gr.Blocks() as demo:
45
- identifiers = []
46
- texts = []
47
  for i in range(4): # Assuming we have 4 entries
48
  with gr.Column():
49
  id_input = gr.Textbox(label=f"Identifier {i+1}")
 
42
 
43
  def text_editor_app():
44
  with gr.Blocks() as demo:
45
+ identifier_inputs = []
46
+ text_inputs = []
47
  for i in range(4): # Assuming we have 4 entries
48
  with gr.Column():
49
  id_input = gr.Textbox(label=f"Identifier {i+1}")