Skip to content
Snippets Groups Projects
Commit 9737a3dd authored by Matthew D Jones's avatar Matthew D Jones
Browse files

Re #22213 Ensure Instrument property not set twice in Listener alg

parent e07b2bf5
Branches 22213_fix_StartLiveData_python_API_bug
No related tags found
No related merge requests found
......@@ -266,6 +266,10 @@ def StartLiveData(*args, **kwargs):
try:
if value is None:
value = kwargs.pop(name)
else:
# We don't need the value, but still need to remove from kwargs
# so that this property isn't set again later
kwargs.pop(name, None)
algm.setProperty(name, value)
except ValueError as ve:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment