diff --git a/docker/jupyter-lab/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py b/docker/jupyter-lab/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py index ed361a2bc30fd23fd843029ab2d2a1d45bb9d123..feb2f5c5b4fe19ea8b53055940ebaa499b92b9a4 100644 --- a/docker/jupyter-lab/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py +++ b/docker/jupyter-lab/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py @@ -138,3 +138,6 @@ devices = ( + recvs + unb2s ) + +# Filter out devices that do not exist +devices = [d for d in devices if d is not None]