From 4739c205004072e80bed021499eab652f08f7538 Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Fri, 11 Jun 2021 11:39:17 +0200 Subject: [PATCH] L2SS-244: Load Statistics device by default in Jupyter --- .../stationcontrol-jupyter/startup/01-devices.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 7e72f1004..441ef50f0 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,6 +1,7 @@ # Create shortcuts for our devices pcc = DeviceProxy("LTS/PCC/1") sdp = DeviceProxy("LTS/SDP/1") +statistics = DeviceProxy("LTS/Statistics/1") # Put them in a list in case one wants to iterate -devices = [pcc, sdp] +devices = [pcc, sdp, statistics] -- GitLab