Skip to content

Commit a5637bb

Browse files
committed
[TASK] tune device does not have TUNECC internally
1 parent 2223012 commit a5637bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dt4acc/custom_tango/ioc/devices/tune_device.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def init_device(self):
3535

3636

3737
@attribute(
38-
name="TUNECC/x",
38+
name="x",
3939
dtype=float,
4040
access=AttrWriteType.READ_WRITE,
4141
label="Tune X",
@@ -52,7 +52,7 @@ def tune_x(self, value: float):
5252
logger.warning(f"Updated tune X to {value}")
5353

5454
@attribute(
55-
name="TUNECC/y",
55+
name="y",
5656
dtype=float,
5757
access=AttrWriteType.READ_WRITE,
5858
label="Tune Y",
@@ -69,7 +69,7 @@ def tune_y(self, value: float):
6969
logger.warning(f"Updated tune Y to {value}")
7070

7171
@attribute(
72-
name="TUNECC/count",
72+
name="count",
7373
dtype=int,
7474
access=AttrWriteType.READ_WRITE,
7575
label="Tune count",

0 commit comments

Comments
 (0)