Skip to content

Commit 2959f18

Browse files
committed
fixes
1 parent 575613c commit 2959f18

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

edg/circuits/BuckBoostConverterPowerPath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def generate(self) -> None:
117117
self.assign(self.actual_boost_dutycycle, boost_values.effective_dutycycle)
118118

119119
combined_ripple_scale = max(buck_values.ripple_scale, boost_values.ripple_scale)
120-
combined_inductor_avg_current = boost_values.inductor_avg_current.hull(boost_values.inductor_avg_current)
120+
combined_inductor_avg_current = buck_values.inductor_avg_current.hull(boost_values.inductor_avg_current)
121121
combined_min_ripple = max(buck_values.min_ripple, boost_values.min_ripple)
122122

123123
self.inductor = self.Block(

edg/parts/power/LedDriver_Tps92200.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from typing import Any
21
from typing_extensions import override
32

43
from ...circuits import *

0 commit comments

Comments
 (0)