From f3ea3bf603d91f5901d7c8c4383b5ded1fc6da4d Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 10 Jan 2024 23:55:51 +0900 Subject: [PATCH] Drop unused --dev and --messy These arguments are defined but are not at all used in any logic. Ideally these should be deprecated, but this library is still in pre-1.0 phase so I'd propose dropping these immediately. Change-Id: I1872f0b2fbfc76f17497dfb6d1eacb60f9e1457a --- observabilityclient/v1/base.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/observabilityclient/v1/base.py b/observabilityclient/v1/base.py index d3f1929..87c4dd3 100644 --- a/observabilityclient/v1/base.py +++ b/observabilityclient/v1/base.py @@ -23,17 +23,6 @@ class ObservabilityBaseCommand(command.Command): def get_parser(self, prog_name): parser = super().get_parser(prog_name) - parser.add_argument( - '--dev', - action='store_true', - help=_("Enable development output.") - ) - parser.add_argument( - '--messy', - action='store_true', - help=_("Disable cleanup of temporary files.") - ) - # TODO(jwysogla): Should this be restricted somehow? parser.add_argument( '--disable-rbac',