diff --git a/README.md b/README.md index cf498b0..7eeea6a 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,6 @@ chroma-feedback [options] -d, --dry-run -l, --log-level -v, --version --h, --help ``` diff --git a/chroma_feedback/core.py b/chroma_feedback/core.py index 418f267..6a0626f 100644 --- a/chroma_feedback/core.py +++ b/chroma_feedback/core.py @@ -9,7 +9,7 @@ def cli() -> None: signal.signal(signal.SIGINT, lambda signal_number, frame: destroy()) - program = ArgumentParser() + program = ArgumentParser(add_help = False) program.add_argument('-p', '--producer', action = 'append', choices = producer.ALL, required = True) program.add_argument('-c', '--consumer', action = 'append', choices = consumer.ALL, required = not helper.has_argument('-d') and not helper.has_argument('--dry-run')) program.add_argument('-b', '--background-run', action = 'store_true') diff --git a/chroma_feedback/metadata.py b/chroma_feedback/metadata.py index 92ffce2..377f316 100644 --- a/chroma_feedback/metadata.py +++ b/chroma_feedback/metadata.py @@ -4,7 +4,7 @@ { 'name': 'chroma-feedback', 'description': 'Turn your RGB powered hardware into a status indicator for continuous integration, continuous deployment and infrastructure monitoring', - 'version': '13.2.2', + 'version': '13.3.0', 'license': 'MIT', 'keywords': ' '.join(producer.ALL), 'author': 'Henry Ruhs',