3232
3333if  typing .TYPE_CHECKING :
3434    from  ...timeseries ._base_types  import  SystemBounds 
35-     from  .. import  power_distributing 
3635
3736_logger  =  logging .getLogger (__name__ )
3837
@@ -225,15 +224,13 @@ def get_status(
225224        component_ids : frozenset [int ],
226225        priority : int ,
227226        system_bounds : SystemBounds ,
228-         distribution_result : power_distributing .Result  |  None ,
229227    ) ->  _Report :
230228        """Get the bounds for the algorithm. 
231229
232230        Args: 
233231            component_ids: The IDs of the components to get the bounds for. 
234232            priority: The priority of the actor for which the bounds are requested. 
235233            system_bounds: The system bounds for the components. 
236-             distribution_result: The result of the last power distribution. 
237234
238235        Returns: 
239236            The target power and the available bounds for the given components, for 
@@ -245,7 +242,6 @@ def get_status(
245242                target_power = target_power ,
246243                _inclusion_bounds = None ,
247244                _exclusion_bounds = system_bounds .exclusion_bounds ,
248-                 distribution_result = distribution_result ,
249245            )
250246
251247        lower_bound  =  system_bounds .inclusion_bounds .lower 
@@ -284,7 +280,6 @@ def get_status(
284280                lower = lower_bound , upper = upper_bound 
285281            ),
286282            _exclusion_bounds = system_bounds .exclusion_bounds ,
287-             distribution_result = distribution_result ,
288283        )
289284
290285    @override  
0 commit comments