From c9247ef82ee32aeb50474979d414b98d67a2b840 Mon Sep 17 00:00:00 2001 From: appel_c Date: Mon, 3 Jun 2024 12:46:12 +0200 Subject: [PATCH] fix: remove inheritance from ophyd.PostionerBase for simflyer --- ophyd_devices/sim/sim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ophyd_devices/sim/sim.py b/ophyd_devices/sim/sim.py index 798276f..e3ddabe 100644 --- a/ophyd_devices/sim/sim.py +++ b/ophyd_devices/sim/sim.py @@ -561,7 +561,7 @@ class SimPositioner(Device, PositionerBase): return "mm" -class SimFlyer(Device, PositionerBase, FlyerInterface): +class SimFlyer(Device, FlyerInterface): """A simulated device mimicing any 2D Flyer device (position, temperature, rotation). The corresponding simulation class is sim_cls=SimulatedPositioner, more details on defaults within the simulation class.