diff --git a/socs/agents/hwp_supervisor/agent.py b/socs/agents/hwp_supervisor/agent.py index da91949b2..f99c420d6 100644 --- a/socs/agents/hwp_supervisor/agent.py +++ b/socs/agents/hwp_supervisor/agent.py @@ -726,8 +726,8 @@ def __init__(self, agent, args): temp_field=self.ybco_temp_field, temp_thresh=args.ybco_temp_thresh, ups_minutes_remaining_thresh=args.ups_minutes_remaining_thresh, - iboot_outlet1=int(self.iboot_outlet1) - 1, - iboot_outlet2=int(self.iboot_outlet2) - 1, + iboot_outlet1=self.iboot_outlet1 - 1, + iboot_outlet2=self.iboot_outlet2 - 1, ) self.control_state_machine = ControlStateMachine() self.forward_is_cw = args.forward_dir == 'cw'