Drop print around unshown fsp updates
parent
00d6258a24
commit
94572716e6
|
@ -800,14 +800,11 @@ async def update_chart_from_fsp(
|
||||||
profiler.finish()
|
profiler.finish()
|
||||||
|
|
||||||
# update chart graphics
|
# update chart graphics
|
||||||
i = 0
|
|
||||||
last = time.time()
|
last = time.time()
|
||||||
async for value in stream:
|
async for value in stream:
|
||||||
|
|
||||||
# chart isn't actively shown so just skip render cycle
|
# chart isn't actively shown so just skip render cycle
|
||||||
if chart.linked.isHidden():
|
if chart.linked.isHidden():
|
||||||
print(f'{i} unseen fsp cyclce')
|
|
||||||
i += 1
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue