Lines Matching refs:click
4 Subject: [PATCH] cli: drop the second argument from @click.argument()
7 @click.argument no longer takes two positional arguments.
24 -@click.argument('ifname', 'e.g. wlan0')
25 +@click.argument('ifname')
26 @click.pass_context
33 -@click.argument('ifname', 'e.g. wlan0')
34 +@click.argument('ifname')
35 @click.option('--ssid', default=None, help='Look at scan results for BSS examples')
36 @click.option('--bssid', default=None, help='Look at scan results for BSS examples')
37 @click.pass_context
42 -@click.argument('ifname', 'e.g. wlan0')
43 +@click.argument('ifname')
44 @click.option('--bridge_if_name', default=None, help='Bridge to control, e.g., br0')
45 @click.option('--driver', default=None, help='e.g. nl80211')
46 @click.option('--config_file', default=None, help='Config file path')
51 -@click.argument('ifname', 'e.g. wlan0')
52 +@click.argument('ifname')
60 -@click.argument('ifname', 'e.g. wlan0')
61 +@click.argument('ifname')
69 -@click.argument('name', 'Name of property (case sensitive)')
70 +@click.argument('name')
78 -@click.argument('name', 'Name of property (case sensitive)')
79 -@click.argument('value', 'Value to be set')
80 +@click.argument('name')
81 +@click.argument('value')
89 -@click.argument('name', 'Name of property (case sensitive)')
90 +@click.argument('name')
91 @click.pass_context
98 -@click.argument('name', 'Name of property (case sensitive)')
99 -@click.argument('value', 'Value to be set')
100 +@click.argument('name')
101 +@click.argument('value')
102 @click.pass_context
109 -@click.argument('name', 'Name of property (case sensitive)')
110 +@click.argument('name')
111 @click.pass_context
118 -@click.argument('name', 'Name of property (case sensitive)')
119 -@click.argument('value', 'Value to be set')
120 +@click.argument('name')
121 +@click.argument('value')
122 @click.pass_context