Skip to content
Snippets Groups Projects
Commit 7087f667 authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

fix CLI argument to suppress plot displacement axis

parent 13f0ef45
No related branches found
No related tags found
No related merge requests found
...@@ -68,8 +68,8 @@ parser.add_argument('--matlab', '-m', action='store_true', ...@@ -68,8 +68,8 @@ parser.add_argument('--matlab', '-m', action='store_true',
help="use MATLAB gwinc engine to calculate noises") help="use MATLAB gwinc engine to calculate noises")
parser.add_argument('--fom', parser.add_argument('--fom',
help="calculate inspiral range for resultant spectrum ('func[:param=val,param=val]')") help="calculate inspiral range for resultant spectrum ('func[:param=val,param=val]')")
parser.add_argument('--displacement', '-D', action='store_true', default=False, dest='displacement', parser.add_argument('--no-displacement', '-nd', action='store_false', dest='displacement',
help="supress adding displacement sensitivity axis") help="suppress displacement sensitivity axis")
group = parser.add_mutually_exclusive_group() group = parser.add_mutually_exclusive_group()
group.add_argument('--interactive', '-i', action='store_true', group.add_argument('--interactive', '-i', action='store_true',
help="interactive plot with interactive shell") help="interactive plot with interactive shell")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment