@@ -14,14 +14,14 @@ def get_args(override_cli_inputs=None):
14
14
"input" ,
15
15
nargs = "+" ,
16
16
help = "The filename(s) or folder(s) of the datafile(s) to load. "
17
- "Required.\n Supply a space-separated list of files or directories."
17
+ "Required.\n Supply a space-separated list of files or directories. "
18
18
"Long lists can be supplied, one per line, in a file with name "
19
19
"file_list.txt. If one or more directory is provided, all valid "
20
20
"data-files in that directory will be processed. Examples of valid "
21
21
"inputs are 'file.xy', 'data/file.xy', 'file.xy, data/file.xy', "
22
- "'.' (load everything in the current directory), 'data' (load"
23
- "everything in the folder ./data), 'data/file_list.txt' (load"
24
- " the list of files contained in the text-file called "
22
+ "'.' (load everything in the current directory), 'data' (load "
23
+ "everything in the folder ./data), 'data/file_list.txt' (load "
24
+ "the list of files contained in the text-file called "
25
25
"file_list.txt that can be found in the folder ./data), "
26
26
"'./*.chi', 'data/*.chi' (load all files with extension .chi in the "
27
27
"folder ./data)." ,
@@ -45,7 +45,7 @@ def get_args(override_cli_inputs=None):
45
45
"-o" ,
46
46
"--output-directory" ,
47
47
help = "The name of the output directory. If not specified "
48
- "then corrected files will be written to the current directory."
48
+ "then corrected files will be written to the current directory. "
49
49
"If the specified directory doesn't exist it will be created." ,
50
50
default = None ,
51
51
)
@@ -64,7 +64,6 @@ def get_args(override_cli_inputs=None):
64
64
action = "store_true" ,
65
65
help = "The absorption correction will be output to a file if this "
66
66
"flag is set. Default is that it is not output." ,
67
- default = "tth" ,
68
67
)
69
68
p .add_argument (
70
69
"-f" ,
0 commit comments