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
Fix missing !pip transform in notebook converter (#5841)
Fixes#5819
The `transform_exclamation_mark` transform was introduced in 59338be but
was accidently omitted from the transforms pipeline
(`_transform_sources`). The pipeline was later refactored in 92e6a04,
but the transform remained missing. This caused `!pip` commands to end
up in unparsable cells instead of being properly commented.
Added the missing transform to the pipeline and test coverage. Note: The
function name `transform_exclamation_mark` is a little misleading since
it only handles `!pip` commands, not all exclamation-mark commands.
0 commit comments