hlydecker commited on
Commit
65a5e9b
·
verified ·
1 Parent(s): 1aaa270

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -15
app.py CHANGED
@@ -4,22 +4,24 @@ import numpy as np
4
 
5
  # Global variables
6
  expenses = []
7
- participants = set()
8
 
9
  def add_participant(participant):
10
- global participants
11
  if not participant or not participant.strip():
12
  raise gr.Error("Participant name cannot be empty")
13
 
14
  clean_name = participant.strip()
15
- participants.add(clean_name)
16
- return list(participants)
 
17
 
18
  def remove_participant(participant):
19
- global participants
20
- if participant in participants:
21
- participants.remove(participant)
22
- return list(participants)
 
23
 
24
  # Add expenses
25
  def add_expense(description, amount, payer, participants_list):
@@ -176,13 +178,6 @@ with gr.Blocks(theme='soft') as app:
176
  outputs=[participants_list, payer, participants]
177
  )
178
 
179
- # Update dropdowns when participants change
180
- participants_list.change(
181
- lambda x: (x, x, x),
182
- inputs=participants_list,
183
- outputs=[participants_list, payer, participants]
184
- )
185
-
186
  add_btn.click(
187
  add_expense,
188
  inputs=[description, amount, payer, participants],
 
4
 
5
  # Global variables
6
  expenses = []
7
+ participants_set = set()
8
 
9
  def add_participant(participant):
10
+ global participants_set
11
  if not participant or not participant.strip():
12
  raise gr.Error("Participant name cannot be empty")
13
 
14
  clean_name = participant.strip()
15
+ participants_set.add(clean_name)
16
+ participants_list = list(participants_set)
17
+ return participants_list, participants_list, participants_list
18
 
19
  def remove_participant(participant):
20
+ global participants_set
21
+ if participant in participants_set:
22
+ participants_set.remove(participant)
23
+ participants_list = list(participants_set)
24
+ return participants_list, participants_list, participants_list
25
 
26
  # Add expenses
27
  def add_expense(description, amount, payer, participants_list):
 
178
  outputs=[participants_list, payer, participants]
179
  )
180
 
 
 
 
 
 
 
 
181
  add_btn.click(
182
  add_expense,
183
  inputs=[description, amount, payer, participants],