diff --git a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py
index 75d96f8383f794f162e513e2f94d696c209912bf..7e72f10049b6f395fef3c6624d9ab7ee03953c09 100644
--- a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py
+++ b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py
@@ -1,3 +1,6 @@
 # Create shortcuts for our devices
 pcc = DeviceProxy("LTS/PCC/1")
 sdp = DeviceProxy("LTS/SDP/1")
+
+# Put them in a list in case one wants to iterate
+devices = [pcc, sdp]