Spaces:
Runtime error
Runtime error
File size: 556 Bytes
3a63794 4d5b0bf 3a63794 4d5b0bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
from controllers.fw import add_fw_option, del_fw_option, fetch_fw_options
from services.state import set_state
def on_fw_add_btn_click(url: str):
add_fw_option(url)
# Fetch new options
return fetch_fw_options(), ""
def on_del_btn_click(url: str):
# Fetch options
options = fetch_fw_options()
# Delete option
del_fw_option(list(options.keys()).index(url))
# Remove from options
options.pop(url)
# Return new options
return options, ""
def on_fw_radio_change(option: str):
set_state('fw_option', option)
|