Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,22 +4,24 @@ import numpy as np
|
|
4 |
|
5 |
# Global variables
|
6 |
expenses = []
|
7 |
-
|
8 |
|
9 |
def add_participant(participant):
|
10 |
-
global
|
11 |
if not participant or not participant.strip():
|
12 |
raise gr.Error("Participant name cannot be empty")
|
13 |
|
14 |
clean_name = participant.strip()
|
15 |
-
|
16 |
-
|
|
|
17 |
|
18 |
def remove_participant(participant):
|
19 |
-
global
|
20 |
-
if participant in
|
21 |
-
|
22 |
-
|
|
|
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],
|