best_focus.py: FIX: print best focus in non-verbose case

This commit is contained in:
Timur A. Fatkhullin
2024-10-27 18:37:31 +03:00
parent 9d4c41dc05
commit cd49a9044f

View File

@@ -52,4 +52,7 @@ if __name__ == "__main__":
if args.verbose: if args.verbose:
print("\nALL DONE") print("\nALL DONE")
if not args.verbose:
print("best focus value is {:g}".format(result["focus_value"]))
sys.exit(0) sys.exit(0)