@@ -408,8 +408,8 @@ def default_processes():
408408 help_group = cliutils .MISC_GROUP , sort_order = 1000 , cls = PluggableCommandLineOption )
409409
410410@click .option (
411- " --check-version/--no-check-version" ,
412- help = " Whether to check for new versions. Defaults to true." ,
411+ ' --check-version/--no-check-version' ,
412+ help = ' Whether to check for new versions. Defaults to true.' ,
413413 default = True ,
414414 # not yet supported in Click 6.7 but added in PluggableCommandLineOption
415415 hidden = True ,
@@ -419,7 +419,7 @@ def default_processes():
419419 is_flag = True ,
420420 default = False ,
421421 hidden = True ,
422- help = 'ScanCode will use cached results during scan time.' ,
422+ help = '(EXPERIMENTAL) ScanCode will use cached results during scan time.' ,
423423 help_group = cliutils .CORE_GROUP , sort_order = 250 , cls = PluggableCommandLineOption )
424424def scancode (
425425 ctx ,
@@ -580,7 +580,7 @@ def scancode(
580580
581581
582582def run_scan (
583- input , #
583+ input , #
584584 config_file = None ,
585585 ignore = [],
586586 from_json = False ,
@@ -1153,7 +1153,7 @@ def load_configuration_file(path):
11531153
11541154 click .echo (f"Loading env from { path } " )
11551155 try :
1156-
1156+
11571157 config_values = saneyaml .load (path .read ())
11581158 ignores = config_values .get ("ignored_patterns" , [])
11591159 except (saneyaml .YAMLError , Exception ):
0 commit comments