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

replace epics.PV with epics.get_pv

parent 05df6814
No related branches found
No related tags found
No related merge requests found
Pipeline #67046 passed
......@@ -32,7 +32,7 @@ async def get_pv(pvlist: str):
pvnames = pvlist.split(",")
pvs = []
for pvname in pvnames:
pvs.append(epics.PV(pvname, auto_monitor=True))
pvs.append(epics.get_pv(pvname))
time.sleep(1)
result = {}
......
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