Skip to content
Snippets Groups Projects
Commit 6354a2e4 authored by Emanuele Laface's avatar Emanuele Laface
Browse files

Fix

parent 3e2e9bfa
No related branches found
Tags 3.0.7
No related merge requests found
Pipeline #109614 passed
...@@ -53,7 +53,7 @@ def get_pvget(pvlist: str): ...@@ -53,7 +53,7 @@ def get_pvget(pvlist: str):
pvnames = pvlist.split(",") pvnames = pvlist.split(",")
for pv in pvnames: for pv in pvnames:
if pv not in monitored_epics: if pv not in monitored_epics:
monitored_pvs[pv] = {"value" : None} monitored_pvs[pv] = {"value": None}
monitored_epics[pv] = epics_ctxt.monitor(pv, partial(epics_callback, pv)) monitored_epics[pv] = epics_ctxt.monitor(pv, partial(epics_callback, pv))
if pv in monitored_pvs: if pv in monitored_pvs:
result_pvs[pv] = monitored_pvs[pv] result_pvs[pv] = monitored_pvs[pv]
......
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