(self, content)
| 216 | return bool(self._preamble_pattern.match(preamble)) |
| 217 | |
| 218 | def _check_content(self, content): |
| 219 | return self._check_value(content) |
| 220 | |
| 221 | def _check_value(self, value): |
| 222 | if self.value is not None: |
nothing calls this directly
no test coverage detected