From b0bc179efa65f06ded974b38102292c057930de8 Mon Sep 17 00:00:00 2001 From: ykyohei <38639108+ykyohei@users.noreply.github.com> Date: Sat, 21 Dec 2024 15:23:48 +0000 Subject: [PATCH] fix --- socs/agents/hwp_pmx/agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/socs/agents/hwp_pmx/agent.py b/socs/agents/hwp_pmx/agent.py index cf0c2dc9b..a959ab1d7 100644 --- a/socs/agents/hwp_pmx/agent.py +++ b/socs/agents/hwp_pmx/agent.py @@ -103,7 +103,7 @@ class SetILim(BaseAction): curr: float def process(self, module): - msg = module.set_current_limit(self.curr) + msg, val = module.set_current_limit(self.curr) self.log.info(msg + "...") @dataclass @@ -111,7 +111,7 @@ class SetVLim(BaseAction): volt: float def process(self, module): - msg = module.set_voltage_limit(self.volt) + msg, val = module.set_voltage_limit(self.volt) self.log.info(msg + "...")