asemxin commited on
Commit
c223aeb
·
1 Parent(s): 731d915

fix: Dropdown choices function call

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -333,7 +333,7 @@ with gr.Blocks(
333
  with gr.Row():
334
  delete_email_dropdown = gr.Dropdown(
335
  label="选择要删除的账号",
336
- choices=get_account_emails,
337
  interactive=True
338
  )
339
  delete_btn = gr.Button("🗑️ 删除账号", variant="stop")
 
333
  with gr.Row():
334
  delete_email_dropdown = gr.Dropdown(
335
  label="选择要删除的账号",
336
+ choices=get_account_emails(),
337
  interactive=True
338
  )
339
  delete_btn = gr.Button("🗑️ 删除账号", variant="stop")