From 8c701037fd32b95d458c65174f0b27a1d067b3d9 Mon Sep 17 00:00:00 2001 From: goerlibe <23436477+goerlibe@users.noreply.github.com> Date: Fri, 19 Jan 2024 12:29:35 +0100 Subject: [PATCH] fix(config_provider): remove experimental argument group --- discopop_library/ConfigProvider/__main__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/discopop_library/ConfigProvider/__main__.py b/discopop_library/ConfigProvider/__main__.py index 51441f92e..2bd5c187f 100644 --- a/discopop_library/ConfigProvider/__main__.py +++ b/discopop_library/ConfigProvider/__main__.py @@ -14,11 +14,6 @@ def parse_args() -> ConfigProviderArguments: """Parse the arguments passed to the discopop_config_provider""" parser = ArgumentParser(description="DiscoPoP Config Provider") - # all flags that are not considered stable should be added to the experimental_parser - experimental_parser = parser.add_argument_group( - "EXPERIMENTAL", - "Arguments for experimental features. Experimental arguments may or may not be removed or changed in the future.", - ) # fmt: off mutually_exclusive = parser.add_mutually_exclusive_group()