mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
finish removing *args support
This commit is contained in:
parent
ad6109692d
commit
7911c6c237
@ -201,13 +201,13 @@ def interactive(__interact_f, **kwargs):
|
||||
|
||||
# Build the callback
|
||||
def call_f(name, old, new):
|
||||
container.args = []
|
||||
container.kwargs = {}
|
||||
for widget in kwargs_widgets:
|
||||
value = widget.value
|
||||
container.kwargs[widget.description] = value
|
||||
if co:
|
||||
clear_output(wait=True)
|
||||
container.result = f(*container.args, **container.kwargs)
|
||||
container.result = f(**container.kwargs)
|
||||
|
||||
# Wire up the widgets
|
||||
for widget in kwargs_widgets:
|
||||
|
Loading…
x
Reference in New Issue
Block a user