Quellcode durchsuchen

feat: [TTA] _sort_by_score_time()

Pull out a one-liner for test scenarios to facilitate testing adjust()
main
Rob Hallam vor 1 Monat
Ursprung
Commit
d0935f950f
1 geänderte Dateien mit 10 neuen und 0 gelöschten Zeilen
  1. +10
    -0
      pipeline/adjusters.py

+ 10
- 0
pipeline/adjusters.py Datei anzeigen

@@ -70,6 +70,16 @@ class TargetTimeAdjuster(Adjuster):
"""
return float(sum([x.interval.duration for x in features]))

def _sort_by_score_time(self, features: list) -> list:
"""Sort Features by score (primary) and by time (secondary).

Returns a sorted list of Features.

Pulled out for unit testing as RDH was having issues with adjust()
and wanted to verify sorting was working correctly.
"""
return sorted(features, key=lambda x: (x.score, x.interval.duration))

def __init__(self, features: list=[],
target_time: int|float=_DEFAULT_TARGET_TIME,
margin: int|float=_DEFAULT_MARGIN,


Laden…
Abbrechen
Speichern