File size: 445 Bytes
3a63794
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from controllers.fw import add_fw_option, del_fw_option, fetch_fw_options


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, ""