From 941e4242eca0fac5048906cb843e43ee4a1ea5c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?El=C3=A9onore=20Charles?= Date: Thu, 16 Jan 2025 10:43:56 +0100 Subject: [PATCH] adding kwargs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Frédéric Collonval --- jupyter_nbmodel_client/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter_nbmodel_client/model.py b/jupyter_nbmodel_client/model.py index 759d8e8..59acb21 100644 --- a/jupyter_nbmodel_client/model.py +++ b/jupyter_nbmodel_client/model.py @@ -328,7 +328,7 @@ def insert(self, index: int, value: dict[str, t.Any]) -> None: with self._lock: self._doc.ycells.insert(index, ycell) - def insert_code_cell(self, index: int, content: str) -> None: + def insert_code_cell(self, index: int, content: str, **kwargs) -> None: """Insert a code cell at position index. Args: