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):
94
94
p .add_argument (
95
95
"-n" ,
96
96
"--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. " ,
102
99
default = None ,
103
100
)
104
101
p .add_argument (
105
102
"-e" ,
106
103
"--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. " ,
112
106
default = None ,
113
107
)
114
108
args = p .parse_args (override_cli_inputs )
You can’t perform that action at this time.
0 commit comments