From d83c102d14430b9acd8525d1d61e6e092d9f6043 Mon Sep 17 00:00:00 2001 From: appel_c Date: Wed, 28 Aug 2024 15:28:32 +0200 Subject: [PATCH] fix: removed arguments for callback call --- ophyd_devices/tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):