From 8c84b234fe959b3751c60a5837309bf0ef57cb25 Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Fri, 4 Oct 2024 17:08:38 -0800 Subject: [PATCH] remove unexpected kwarg --- src/hyp3_srg/time_series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyp3_srg/time_series.py b/src/hyp3_srg/time_series.py index a92ba42..e43fcb2 100644 --- a/src/hyp3_srg/time_series.py +++ b/src/hyp3_srg/time_series.py @@ -342,7 +342,7 @@ def main(): ) parser.add_argument('--bucket', help='AWS S3 bucket HyP3 for upload the final product(s)') parser.add_argument('--bucket-prefix', default='', help='Add a bucket prefix to product(s)') - parser.add_argument('--use-granules-from-s3', type=bool, action='store_true') + parser.add_argument('--use-granules-from-s3', action='store_true') parser.add_argument('granules', type=str.split, nargs='*', default='', help='GSLC granules.') args = parser.parse_args() args.granules = [item for sublist in args.granules for item in sublist]