From 1b5e9a0a0f57cce1957b9129d6f2484f98ad32dc Mon Sep 17 00:00:00 2001 From: Carlo Guidi <cguidi@km3net.de> Date: Tue, 14 Jan 2020 10:00:43 +0100 Subject: [PATCH] Update acoustics.py --- scripts/acoustics.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/acoustics.py b/scripts/acoustics.py index 54679e9..a812b99 100644 --- a/scripts/acoustics.py +++ b/scripts/acoustics.py @@ -24,11 +24,11 @@ from datetime import datetime import km3pipe as kp -parser = argparse.ArgumentParser(description='Online_monitoring') -parser.add_argument('-d', dest='det_id', type=str, nargs=1, required=True, - help='The detector ID (e.g. D_ORCA005)') -parser.add_argument('-o', dest='plot_dir', type=str, nargs=1, required=True, - help='Directory in which the plot is saved') +parser = argparse.ArgumentParser(description = 'Online_monitoring') +parser.add_argument('-d', dest = 'det_id', type = str, nargs = 1, required = True, + help = 'The detector ID (e.g. D_ORCA005)') +parser.add_argument('-o', dest = 'plot_dir', type = str, nargs = 1, required = True, + help = 'Directory in which the plot is saved') args = parser.parse_args() detid = args.det_id[0] -- GitLab