Skip to content

Commit

Permalink
chore: fix mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Dec 19, 2023
1 parent b187b64 commit e112d0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kiara_plugin/jupyter/renderers/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ def retrieve_jinja_env(self) -> JinjaEnv:
jinja_env = JinjaEnv(template_base="kiara_plugin.jupyter")
return jinja_env

def get_template(self, render_config: RenderInputsSchema) -> Template:
def get_template(self, render_config: JupyterNotebookRenderInputSchema) -> Template:

return self.get_jinja_env().get_template("pipeline/jupyter_notebook.ipynb.j2")

def assemble_render_inputs(
self, instance: Any, render_config: RenderInputsSchema
self, instance: Any, render_config: JupyterNotebookRenderInputSchema
) -> Mapping[str, Any]:

from kiara.utils.rendering import create_pipeline_render_inputs
Expand Down

0 comments on commit e112d0c

Please sign in to comment.