Skip to content

Commit

Permalink
fix: fixed dict key path -> container_path
Browse files Browse the repository at this point in the history
  • Loading branch information
a.pirogov committed May 30, 2023
1 parent 71ca092 commit 60fa733
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion metador_core/widget/server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ def get_widget_args(doc):
"""Extract arguments from bokeh server request parameters."""
args = doc.session_context.request.arguments
return dict(
container_id=get_widget_arg(args, "id"), path=get_widget_arg(args, "path")
container_id=get_widget_arg(args, "id"),
container_path=get_widget_arg(args, "path"),
)


Expand Down

0 comments on commit 60fa733

Please sign in to comment.