Enzo

Results 3 issues of Enzo

## Description When using the `jupyter labextension lock extension:plugin` command, the concerned extension is not locked and can still be enabled/disabled in the plugin manager. ## Reproduce - Disable an...

bug
pkg:pluginmanager

## Description When trying to load an image with markdown, the notebook stops loading. It only happens with markdown image syntax (HTML or Image IPython widget are fine), and only...

bug

I am streaming a video using ffmpeg: `ffmpeg -re -i file.mp4 -f mpegts udp://localhost:2000`, which I'm trying to read using pyav: ``` import av c = av.open('udp://localhost:2000') for packet in...