Skip to content
Snippets Groups Projects
thermal_checks.py 175 B
Newer Older
from util import BaseCheckList

def thermal_correlation_check(frame, parameters):
    return frame

class CheckList(BaseCheckList):
    checks = [ thermal_correlation_check ]