diff --git a/ofscraper/utils/args/parse/group_bundles/post_check.py b/ofscraper/utils/args/parse/group_bundles/post_check.py index f83a61f42..dc3aeb884 100644 --- a/ofscraper/utils/args/parse/group_bundles/post_check.py +++ b/ofscraper/utils/args/parse/group_bundles/post_check.py @@ -4,7 +4,7 @@ from ofscraper.utils.args.parse.group_bundles.advanced_common import advanced_args from ofscraper.utils.args.parse.group_bundles.common import common_args from ofscraper.utils.args.parse.group_bundles.utils.check import check_mode_changes -from ofscraper.utils.args.parse.groups.check_content import content_options +from ofscraper.utils.args.parse.groups.check_content import content_check_options from ofscraper.utils.args.helpers.hide_args import hide_check_mode @@ -20,7 +20,7 @@ def post_check_args(func): @url_group @force @common_args - @content_options + @content_check_options @advanced_args @check_mode_changes @click.pass_context diff --git a/ofscraper/utils/args/parse/groups/check_content.py b/ofscraper/utils/args/parse/groups/check_content.py index 8db3cd110..590720bcd 100644 --- a/ofscraper/utils/args/parse/groups/check_content.py +++ b/ofscraper/utils/args/parse/groups/check_content.py @@ -10,7 +10,7 @@ Filter by type, date, label, size, and media type""" content_check_options_tuple=(timeline_strict, check_areas) -content_options = click.option_group( +content_check_options = click.option_group( content_check_options_desc, *content_check_options_tuple, help=content_check_options_help,