@@ -22,19 +22,19 @@ def main():
22
22
prog = "nxinspect" ,
23
23
description = "Inspects and validates NeXus files." )
24
24
parser .add_argument ("-f" , "--filename" , nargs = 1 ,
25
- help = "name of the NeXus file to be validated" )
25
+ help = "name of the NeXus file to be validated" )
26
26
parser .add_argument ("-p" , "--path" , nargs = 1 ,
27
- help = "path to group to be validated in the NeXus file" )
27
+ help = "path to group to be validated in the NeXus file" )
28
28
parser .add_argument ("-a" , "--application" , nargs = '?' , const = True ,
29
- help = "validate the NeXus file against its application definition" )
29
+ help = "validate the NeXus file against its application definition" )
30
30
parser .add_argument ("-b" , "--baseclass" , nargs = 1 ,
31
- help = "name of the base class to be listed" )
31
+ help = "name of the base class to be listed" )
32
32
parser .add_argument ("-i" , "--info" , action = 'store_true' ,
33
- help = "output info messages in addition to warnings and errors" )
33
+ help = "output info messages in addition to warnings and errors" )
34
34
parser .add_argument ("-w" , "--warning" , action = 'store_true' ,
35
- help = "output warning and error messages (default)" )
35
+ help = "output warning and error messages (default)" )
36
36
parser .add_argument ("-e" , "--error" , action = 'store_true' ,
37
- help = "output errors" )
37
+ help = "output errors" )
38
38
parser .add_argument ('-v' , '--version' , action = 'version' ,
39
39
version = '%(prog)s v' + nxvalidate .__version__ )
40
40
args = parser .parse_args ()
0 commit comments