From 1fe736523ede7ba4c75c447f4fe4f07fc18ce19d Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Thu, 25 Nov 2021 13:38:06 +0100 Subject: [PATCH] update arg description --- huepaper.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/huepaper.py b/huepaper.py index 79268b9..6265d28 100755 --- a/huepaper.py +++ b/huepaper.py @@ -126,13 +126,13 @@ if __name__ == "__main__": "-smin", default=0.2, type=float, - help="minimum satisfaction for colors in range [0, 1] (default: 0.2)", + help="minimum saturation for colors in range [0, 1] (default: 0.2)", ) parser.add_argument( "-smax", default=1.0, type=float, - help="maximum satisfaction for colors in range [0, 1] (default: 1.0)", + help="maximum saturation for colors in range [0, 1] (default: 1.0)", ) parser.add_argument( "-lmin", @@ -164,6 +164,9 @@ if __name__ == "__main__": lum_min = args.lmin lum_max = args.lmax + print(vars(args)) + exit() + # Get size try: values = size.split("x")