Skip to content
Snippets Groups Projects
Commit b23b4bf7 authored by Cees Bassa's avatar Cees Bassa
Browse files

Make executable, remove subband specification check


Signed-off-by: default avatarCees Bassa <bassa@astron.nl>
parent 6f8e47bb
No related branches found
No related tags found
No related merge requests found
......@@ -78,10 +78,6 @@ if __name__ == "__main__":
smin = int(args.subband.split("..")[0])
smax = int(args.subband.split("..")[-1])
subband_list = list(range(smin, smax + 1))
elif "*" in args.subband:
subband = int(args.subband.split("*")[0])
nsubband = int(args.subband.split("*")[1])
subband_list = [subband] * nsubband
else:
subband_list = [int(args.subband)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment