Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Adye authored and Tim Adye committed Dec 5, 2024
1 parent fcbc74d commit c3642bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Examples/Scripts/Python/full_chain_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,11 @@ def full_chain(args):
outputDirCsv = outputDir if args.output_csv != 0 else None
outputDirLessCsv = outputDirLess if args.output_csv != 0 else None
outputDirMoreCsv = outputDirMore if args.output_csv != 0 else None
outputDirObj = outputDirLess if args.output_obj else outputDir if args.output_csv == 2 else None
outputDirObj = (
outputDirLess
if args.output_obj
else outputDir if args.output_csv == 2 else None
)

# fmt: off
if args.generic_detector:
Expand Down

0 comments on commit c3642bd

Please sign in to comment.