You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I work with databricks notebooks, which (when exported to the ipynb format) add metadata fields with keys:
application/vnd.databricks.v1+cell
application/vnd.databricks.v1+notebook
at the cell and notebook levels, respectively.
Stripping these does not work using this tool because nbstripout interprets the period . as a dictionary nesting delimiter when I pass these names as arguments to the extra keys argument.
For example, nbstripout --extra-keys='cell.metadata.application/vnd.databricks.v1+cell metadata.application/vnd.databricks.v1+notebook' my_notebook.ipynb will not work.
I have a modified version of nbstripout that fixes the issue and I will open a pull request for it.
The text was updated successfully, but these errors were encountered:
I work with databricks notebooks, which (when exported to the ipynb format) add metadata fields with keys:
application/vnd.databricks.v1+cell
application/vnd.databricks.v1+notebook
at the cell and notebook levels, respectively.
Stripping these does not work using this tool because nbstripout interprets the period
.
as a dictionary nesting delimiter when I pass these names as arguments to the extra keys argument.For example,
nbstripout --extra-keys='cell.metadata.application/vnd.databricks.v1+cell metadata.application/vnd.databricks.v1+notebook' my_notebook.ipynb
will not work.I have a modified version of nbstripout that fixes the issue and I will open a pull request for it.
The text was updated successfully, but these errors were encountered: