From d7887913d2c341beb08f7c1a2f26e905e98cdcaf Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 10 Feb 2023 12:31:57 +0100 Subject: [PATCH] neater --- slic/core/sensor/remoteplot.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/slic/core/sensor/remoteplot.py b/slic/core/sensor/remoteplot.py index 81cea5a2..71bf84ee 100644 --- a/slic/core/sensor/remoteplot.py +++ b/slic/core/sensor/remoteplot.py @@ -19,8 +19,7 @@ class RemotePlot(xrc.ServerProxy): def __dir__(self): d1 = super().__dir__() d2 = self.utils.info().keys() - d2 = list(d2) - return d1 + d2 + return [*d1, *d2]