Skip to content

Commit 5b5046c

Browse files
edit help messages
1 parent 1f08691 commit 5b5046c

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

src/diffpy/labpdfproc/labpdfprocapp.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,21 +94,15 @@ def get_args(override_cli_inputs=None):
9494
p.add_argument(
9595
"-n",
9696
"--username",
97-
help="Your username. If not provided here, it can be specified in input "
98-
"or stored in diffpyconfig.json in the current or home directory. "
99-
"Existing config files prevent re-prompting. Values can be overridden here "
100-
"but won't be saved to config files unless it's the first time specifying, "
101-
"which saves to the config file in the home directory.",
97+
help="Username will be loaded from config files. Specify here "
98+
"only if you want to override that behavior at runtime. ",
10299
default=None,
103100
)
104101
p.add_argument(
105102
"-e",
106103
"--email",
107-
help="Your email. If not provided here, it can be specified in input "
108-
"or stored in diffpyconfig.json in the current or home directory. "
109-
"Existing config files prevent re-prompting. Values can be overridden here "
110-
"but won't be saved to config files unless it's the first time specifying, "
111-
"which saves to the config file in the home directory.",
104+
help="Email will be loaded from config files. Specify here "
105+
"only if you want to override that behavior at runtime. ",
112106
default=None,
113107
)
114108
args = p.parse_args(override_cli_inputs)

0 commit comments

Comments
 (0)