From 86799fff62df2b7dc310683ef682159ff005b605 Mon Sep 17 00:00:00 2001 From: RaghavMangla Date: Sat, 5 Oct 2024 20:32:20 +0530 Subject: [PATCH 1/2] issue fixed:document the process of rendering a notebooktask in a flyte deck Signed-off-by: RaghavMangla --- examples/papermill_plugin/papermill_plugin/simple.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/papermill_plugin/papermill_plugin/simple.py b/examples/papermill_plugin/papermill_plugin/simple.py index 9d4536561..22549d5a1 100644 --- a/examples/papermill_plugin/papermill_plugin/simple.py +++ b/examples/papermill_plugin/papermill_plugin/simple.py @@ -32,6 +32,7 @@ name="simple-nb", notebook_path=str(pathlib.Path(__file__).parent.absolute() / "nb_simple.ipynb"), render_deck=True, + disable_deck=False, inputs=kwtypes(v=float), outputs=kwtypes(square=float), ) From 585cbb2d978324b229465a167626b67e8ccf61f6 Mon Sep 17 00:00:00 2001 From: RaghavMangla Date: Sat, 5 Oct 2024 21:50:37 +0530 Subject: [PATCH 2/2] fixed Signed-off-by: RaghavMangla --- examples/papermill_plugin/papermill_plugin/simple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/papermill_plugin/papermill_plugin/simple.py b/examples/papermill_plugin/papermill_plugin/simple.py index 22549d5a1..90b642b9b 100644 --- a/examples/papermill_plugin/papermill_plugin/simple.py +++ b/examples/papermill_plugin/papermill_plugin/simple.py @@ -32,7 +32,7 @@ name="simple-nb", notebook_path=str(pathlib.Path(__file__).parent.absolute() / "nb_simple.ipynb"), render_deck=True, - disable_deck=False, + enable_deck=True, inputs=kwtypes(v=float), outputs=kwtypes(square=float), )