diff --git a/ophyd_devices/tests/utils.py b/ophyd_devices/tests/utils.py index 1a9e24f..4285320 100644 --- a/ophyd_devices/tests/utils.py +++ b/ophyd_devices/tests/utils.py @@ -201,7 +201,7 @@ class MockPV: """MOCK PV, put function""" self.mock_data = value if callback is not None: - callback(None, None, None) + callback() # pylint: disable=unused-argument def add_callback(self, callback=None, index=None, run_now=False, with_ctrlvars=True, **kw):