-
Notifications
You must be signed in to change notification settings - Fork 9
Closed
Description
When listdevice() is given a dotted-name object, such as swait1.channels, it reports the name of this parent using the data name (swait1_channels) but the remaining children use the dotted-name (swait1_channels.A.input_value).
apstools/apstools/utils/device_info.py
Lines 163 to 166 in 1de05de
| if cname: | |
| dd["name"].append(f"{obj.name}.{signal.dotted_name}") | |
| if dname: | |
| dd["data name"].append(signal.name) |
The parent object should use the .dotted_name property instead of the .name property.