Skip to content

Commit

Permalink
correct contamination from an other branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Relm-Arrowny committed Apr 18, 2024
1 parent d383374 commit 2e2f816
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/ophyd_async/core/signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ def __init__(
self._timeout = timeout
self._init_backend = self._backend = backend

@property
def name(self) -> str:
return self._name

def set_name(self, name: str = ""):
self._name = name

async def connect(self, sim=False, timeout=DEFAULT_TIMEOUT):
if sim:
self._backend = SimSignalBackend(
Expand Down

0 comments on commit 2e2f816

Please sign in to comment.