From 9bcb533920b9092d4c4e7bb3d8262295139615bf Mon Sep 17 00:00:00 2001 From: Joost Ellerbroek Date: Wed, 6 Mar 2024 14:40:32 +0100 Subject: [PATCH] Consistent case for signal names --- bluesky/core/signal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluesky/core/signal.py b/bluesky/core/signal.py index e9de00616f..a3ffbd4e15 100644 --- a/bluesky/core/signal.py +++ b/bluesky/core/signal.py @@ -12,7 +12,7 @@ def __call__(cls, topic='', *args, **kwargs): ''' Factory function for Signal construction. ''' # if no name is passed, return an anonymous Signal if not topic: - return super().__call__('anonymous', *args, **kwargs) + return super().__call__('ANONYMOUS', *args, **kwargs) # Convert name to string if necessary if isinstance(topic, bytes): topic = topic.decode()