Skip to content

Commit

Permalink
adding kwargs
Browse files Browse the repository at this point in the history
Co-authored-by: Frédéric Collonval <[email protected]>
  • Loading branch information
eleonorecharles and fcollonval authored Jan 16, 2025
1 parent 7c5bb0b commit 941e424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_nbmodel_client/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 941e424

Please sign in to comment.