From fad2aa41585d618b8a4137b5fbc38cc751bf5715 Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Tue, 3 Aug 2021 15:43:00 -0500 Subject: [PATCH] Correct long form of exhaustion limit The argument incorrectly used an underscore as a word separator. This has been corrected. --- bonemarketsolver/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonemarketsolver/__main__.py b/bonemarketsolver/__main__.py index 1d58de5..2f1eaad 100644 --- a/bonemarketsolver/__main__.py +++ b/bonemarketsolver/__main__.py @@ -79,7 +79,7 @@ skeleton_parameters.add_argument( ) skeleton_parameters.add_argument( - "-e", "--exhaustion", "--maximum_exhaustion", + "-e", "--exhaustion", "--maximum-exhaustion", type=int, help="maximum exhaustion that skeleton should generate", dest='maximum_exhaustion'