QVolution2019.2/AoM_Service/library/serviceapp/threshold_upper.py

9 lines
179 B
Python
Executable File

from threshold import Threshold
class Threshold_Upper(Threshold) :
def exceeds(self, value) :
return self.threshold < value
def can_breach(self) :
return True