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

9 lines
179 B
Python
Executable File

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