File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments