From 4d257314a80b3e98e2dab63870f40b34bfb64b46 Mon Sep 17 00:00:00 2001 From: Pete Jemian Date: Mon, 6 Jul 2020 17:30:11 -0500 Subject: [PATCH] TST #333 LGTM review --- apstools/beamtime/bss_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apstools/beamtime/bss_info.py b/apstools/beamtime/bss_info.py index 1e081f3ac..c1769bd95 100755 --- a/apstools/beamtime/bss_info.py +++ b/apstools/beamtime/bss_info.py @@ -343,12 +343,12 @@ def get_options(): subcommand = parser.add_subparsers(dest='subcommand', title='subcommand') - p_sub = subcommand.add_parser('beamlines', help="print list of beamlines") + subcommand.add_parser('beamlines', help="print list of beamlines") p_sub = subcommand.add_parser('current', help="print current ESAF(s) and proposal(s)") p_sub.add_argument('beamlineName', type=str, help="Beamline name") - p_sub = subcommand.add_parser('cycles', help="print APS cycle names") + subcommand.add_parser('cycles', help="print APS cycle names") p_sub = subcommand.add_parser('esaf', help="print specific ESAF") p_sub.add_argument('esafId', type=int, help="ESAF ID number")