Skip to content

Commit e46d1bf

Browse files
committed
[TASK]
self.bpm_mimicry = None added
1 parent 286465a commit e46d1bf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/dt4acc/custom_tango/views/result_view.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def __init__(self, *, prefix):
1818
self.periodic_update_view = RepeatedResultView(prefix=prefix)
1919

2020
def set_bpm_mimicry(self, bpm_mimicry):
21+
return
2122
self.periodic_update_view.set_bpm_mimicry(bpm_mimicry)
2223

2324
async def push_twiss(self, twiss_result: TwissWithAggregatedKValues):
@@ -26,9 +27,11 @@ async def push_twiss(self, twiss_result: TwissWithAggregatedKValues):
2627

2728
async def push_orbit(self, orbit_result: Orbit):
2829
await self.calculation_result_view.push_orbit(orbit_result)
30+
return
2931
await self.periodic_update_view.push_orbit(orbit_result)
3032

3133
async def push_value(self, elm_update: ElementUpdate):
34+
return
3235
await self.calculation_result_view.push_value(elm_update)
3336

3437
async def heart_beat(self):

0 commit comments

Comments
 (0)