Skip to content

Commit 6cf6453

Browse files
committed
docs: minor update to correct log format
1 parent 53c91b0 commit 6cf6453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdcat/cluster/cluster.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def cluster_vits(
254254
if num_crop != len(df_dets):
255255
num_processes = min(multiprocessing.cpu_count(), len(df_dets))
256256
if roi == True:
257-
info('ROI crops already exist. Creating square crops in parallel using {multiprocessing.cpu_count()} processes...')
257+
info(f'ROI crops already exist. Creating square crops in parallel using {multiprocessing.cpu_count()} processes...')
258258
with multiprocessing.Pool(num_processes) as pool:
259259
args = [(row, 224) for index, row in df_dets.iterrows()]
260260
pool.starmap(square_image, args)

0 commit comments

Comments
 (0)