File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 66
77"""
88tier-biased security aggregate
9- derive a single lossy score from a garak run
9+ derive a single lossy score from a garak run
1010"""
1111
1212import argparse
@@ -276,7 +276,7 @@ def main(argv=None) -> None:
276276 print (f"📜 JSON output to: { args .json_output } " )
277277
278278 digest = None
279- if args .verbose :
279+ if args .verbose and not args . quiet :
280280 print (f"processing> { report_path } " )
281281
282282 with open (args .report_path , "r" , encoding = "utf-8" ) as report_file :
@@ -295,7 +295,7 @@ def main(argv=None) -> None:
295295 print (f"❄️ Digest run_uuid is { digest ['meta' ]['run_uuid' ]} " )
296296
297297 tbsa , pdver_hash , pd_count = digest_to_tbsa (
298- digest , verbose = args .verbose , quiet = args .quiet
298+ digest , verbose = ( args .verbose and not args . quiet ) , quiet = args .quiet
299299 )
300300
301301 if not args .quiet :
You can’t perform that action at this time.
0 commit comments