Fix profiler f-string
parent
518d3a9c55
commit
43c08018ad
|
@ -571,7 +571,7 @@ def graphics_update_cycle(
|
||||||
|
|
||||||
mx = mx_in_view + tick_margin
|
mx = mx_in_view + tick_margin
|
||||||
mn = mn_in_view - tick_margin
|
mn = mn_in_view - tick_margin
|
||||||
profiler('{fqsdn} `multi_maxmin()` call')
|
profiler(f'{fqsn} `multi_maxmin()` call')
|
||||||
|
|
||||||
# don't real-time "shift" the curve to the
|
# don't real-time "shift" the curve to the
|
||||||
# left unless we get one of the following:
|
# left unless we get one of the following:
|
||||||
|
@ -885,7 +885,9 @@ def graphics_update_cycle(
|
||||||
fvb.interact_graphics_cycle(
|
fvb.interact_graphics_cycle(
|
||||||
do_linked_charts=False,
|
do_linked_charts=False,
|
||||||
)
|
)
|
||||||
profiler(f'vlm `Viz[{viz.name}].plot.vb.interact_graphics_cycle()`')
|
profiler(
|
||||||
|
f'Viz[{viz.name}].plot.vb.interact_graphics_cycle()`'
|
||||||
|
)
|
||||||
|
|
||||||
# even if we're downsampled bigly
|
# even if we're downsampled bigly
|
||||||
# draw the last datum in the final
|
# draw the last datum in the final
|
||||||
|
|
Loading…
Reference in New Issue