Searched refs:worst (Results 1 – 1 of 1) sorted by relevance
447 def __init__(self, worst = 0, checks = [], field_name = 'undefined'): argument448 if isinstance(worst, list):449 self.worst = max(i for i in worst if i is not None)451 self.worst = worst457 self.worst = max(self.worst, extend.worst)459 if self.worst == extend.worst: