From 4816493b2ad84875866ac769838241f449f07265 Mon Sep 17 00:00:00 2001 From: datawhores Date: Mon, 6 May 2024 14:18:49 -0500 Subject: [PATCH] change type --- ofscraper/utils/args/groups/common_args.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ofscraper/utils/args/groups/common_args.py b/ofscraper/utils/args/groups/common_args.py index e8fc0a1af..1ee55e77f 100644 --- a/ofscraper/utils/args/groups/common_args.py +++ b/ofscraper/utils/args/groups/common_args.py @@ -253,14 +253,14 @@ def common_other_params(func): "-length-max", help="max duration in seconds does not effect non-video files", required=False, - type=parse_size, + type=int, ), click.option( "-lm", "--length-min", help="min duration in seconds does not effect non-video files", required=False, - type=parse_size, + type=int, ), help="Options for controlling which media is downloaded")