From 1093e6bf047fffd13d52b5856e30e3cf0fb931d8 Mon Sep 17 00:00:00 2001 From: thomashopkins32 Date: Tue, 10 Dec 2024 13:56:04 -0500 Subject: [PATCH] Change description and add to other methods not implemented --- ophyd/_dummy_shim.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ophyd/_dummy_shim.py b/ophyd/_dummy_shim.py index 881ccb1bf..82c0ea12f 100644 --- a/ophyd/_dummy_shim.py +++ b/ophyd/_dummy_shim.py @@ -40,19 +40,19 @@ def setup(logger): def caget(*args, **kwargs): - raise NotImplementedError + raise NotImplementedError("Dummy control layer in-use. Try installing either pyepics or caproto.") def caput(*args, **kwargs): - raise NotImplementedError + raise NotImplementedError("Dummy control layer in-use. Try installing either pyepics or caproto.") def get_pv(*args, **kwargs): - raise NotImplementedError("Missing install for either pyepics or caproto.") + raise NotImplementedError("Dummy control layer in-use. Try installing either pyepics or caproto.") def release_pvs(*args, **kwargs): - raise NotImplementedError + raise NotImplementedError("Dummy control layer in-use. Try installing either pyepics or caproto.") def get_dispatcher():