Skip to content
Snippets Groups Projects
electronic_checks.py 376 B
Newer Older
from util import BaseCheckList

def hbb_temp_outlier_check(frame, parameters):
    return frame

def abb_temp_outlier_check(frame, parameters):
    return frame

def calibrationambienttemp_outlier_check(frame, parameters):
    return frame

class CheckList(BaseCheckList):
    checks = [ hbb_temp_outlier_check , abb_temp_outlier_check, calibrationambienttemp_outlier_check ]