From fad70ed8457595493c9b48b1364cff711bd23bc7 Mon Sep 17 00:00:00 2001 From: Susana Hahn Date: Thu, 30 Nov 2023 15:55:44 +0100 Subject: [PATCH] Fixed typos --- clingraph/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clingraph/__init__.py b/clingraph/__init__.py index 919a4e1..d44079c 100644 --- a/clingraph/__init__.py +++ b/clingraph/__init__.py @@ -132,7 +132,7 @@ def _get_parser(): graphs_params.add_argument('--select-model', help = textwrap.dedent('''\ Select only one of the models when using a json input. - Defined by an idex for accessing the models, starting in index 0. + Defined by an index for accessing the models, starting in index 0. Negative indexes are also allowed (-1 refers to the last model) Can appear multiple times to select multiple models.'''), type=int, @@ -162,7 +162,7 @@ def _get_parser(): graphs_params.add_argument('--save', action='store_true', help = textwrap.dedent('''\ - Saves the output in files based on the directory, name format and fortmat provided. + Saves the output in files based on the directory, name format and format provided. Otherwise the output is just printed on the stdout''')) graphviz_params = parser.add_argument_group('OUTPUT {dot|render|tex|animate}','Options for the functionality regarding graphviz.')