Skip to content

Commit

Permalink
Fix profiler f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Feb 2, 2023
1 parent b3ac63a commit f1f1515
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions piker/ui/_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def graphics_update_cycle(

mx = mx_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
# left unless we get one of the following:
Expand Down Expand Up @@ -885,7 +885,9 @@ def graphics_update_cycle(
fvb.interact_graphics_cycle(
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
# draw the last datum in the final
Expand Down

0 comments on commit f1f1515

Please sign in to comment.