Skip to content

Commit

Permalink
remove unexpected kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherrmann committed Oct 5, 2024
1 parent c7464cc commit 8c84b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyp3_srg/time_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 8c84b23

Please sign in to comment.