mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2026-02-07 15:48:40 +01:00
fix: removed arguments for callback call
This commit is contained in:
@@ -201,7 +201,7 @@ class MockPV:
|
|||||||
"""MOCK PV, put function"""
|
"""MOCK PV, put function"""
|
||||||
self.mock_data = value
|
self.mock_data = value
|
||||||
if callback is not None:
|
if callback is not None:
|
||||||
callback(None, None, None)
|
callback()
|
||||||
|
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
def add_callback(self, callback=None, index=None, run_now=False, with_ctrlvars=True, **kw):
|
def add_callback(self, callback=None, index=None, run_now=False, with_ctrlvars=True, **kw):
|
||||||
|
|||||||
Reference in New Issue
Block a user