(value, criteria_pattern)
| 324 | |
| 325 | |
| 326 | def timediff_gt(value, criteria_pattern): |
| 327 | if criteria_pattern is None: |
| 328 | return False |
| 329 | return _timediff( |
| 330 | diff_target=value, period_seconds=criteria_pattern, operator=greater_than |
| 331 | ) |
| 332 | |
| 333 | |
| 334 | def exists(value, criteria_pattern): |
nothing calls this directly
no test coverage detected