File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,10 @@ def print_config_summary(
52
52
table .add_row ("Directory Path" , f"{ curr_dir } " )
53
53
table .add_row ("Count of Images" , f"{ len (omr_files )} " )
54
54
table .add_row ("Set Layout Mode " , "ON" if args ["setLayout" ] else "OFF" )
55
+ pre_processor_names = [pp .__class__ .__name__ for pp in template .pre_processors ]
55
56
table .add_row (
56
57
"Markers Detection" ,
57
- "ON" if "CropOnMarkers" in template . pre_processors else "OFF" ,
58
+ "ON" if "CropOnMarkers" in pre_processor_names else "OFF" ,
58
59
)
59
60
table .add_row ("Auto Alignment" , f"{ tuning_config .alignment_params .auto_align } " )
60
61
table .add_row ("Detected Template Path" , f"{ template } " )
@@ -65,7 +66,7 @@ def print_config_summary(
65
66
66
67
table .add_row (
67
68
"Detected pre-processors" ,
68
- f" { [ pp . __class__ . __name__ for pp in template . pre_processors ] } " ,
69
+ ", " . join ( pre_processor_names ) ,
69
70
)
70
71
console .print (table , justify = "center" )
71
72
You can’t perform that action at this time.
0 commit comments