From 575282e8b67b318850b1006e5364bace73dca114 Mon Sep 17 00:00:00 2001 From: zhuchcn Date: Thu, 24 Feb 2022 23:08:57 -0800 Subject: [PATCH] fix (decoy_fasta): return parser so the help message can be accessed when building the docs. --- moPepGen/cli/decoy_fasta.py | 1 + 1 file changed, 1 insertion(+) diff --git a/moPepGen/cli/decoy_fasta.py b/moPepGen/cli/decoy_fasta.py index 6882e817..6ba03450 100644 --- a/moPepGen/cli/decoy_fasta.py +++ b/moPepGen/cli/decoy_fasta.py @@ -92,6 +92,7 @@ def add_subparser_decoy_fasta(subparser:argparse._SubParsersAction): common.add_args_quiet(parser) common.print_help_if_missing_args(parser) parser.set_defaults(func=decoy_fasta) + return parser class _Summary(): """ Summary """