Fix profiler f-strings
							parent
							
								
									1a10514cad
								
							
						
					
					
						commit
						72a9af21ac
					
				| 
						 | 
					@ -122,7 +122,7 @@ def multi_maxmin(
 | 
				
			||||||
    ) = out
 | 
					    ) = out
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if profiler:
 | 
					    if profiler:
 | 
				
			||||||
        profiler('fast_viz.maxmin({read_slice})')
 | 
					        profiler(f'fast_viz.maxmin({read_slc})')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    mn, mx = yrange
 | 
					    mn, mx = yrange
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -143,7 +143,7 @@ def multi_maxmin(
 | 
				
			||||||
            mx_vlm_in_view = mxmn[1]
 | 
					            mx_vlm_in_view = mxmn[1]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if profiler:
 | 
					        if profiler:
 | 
				
			||||||
            profiler('vlm_viz.maxmin({read_slc})')
 | 
					            profiler(f'vlm_viz.maxmin({read_slc})')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return (
 | 
					    return (
 | 
				
			||||||
        mx,
 | 
					        mx,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue