okld
Results
12
comments of
okld
You can create a function with any number of parameter to match callback signatures. In your case, you can replace `sync(None, 'radio_value')` with: ```python def handle_change(event, value): # event is...
Hey @pwsanders7, You can partially apply arguments to a function using functools's partial function. This is something I haven't documented yet because I'd like to find a better alternative, but...