Check if a line should be suppressed in verbose output. Args: line: The line to check Returns: True if the line should be suppressed, False otherwise
(line: str)
| 82 | |
| 83 | |
| 84 | def should_suppress_line(line: str) -> bool: |
| 85 | """Check if a line should be suppressed in verbose output. |
| 86 | |
| 87 | Args: |
| 88 | line: The line to check |
| 89 | |
| 90 | Returns: |
| 91 | True if the line should be suppressed, False otherwise |
| 92 | """ |
| 93 | return any(pattern.search(line) for pattern in VERBOSE_SUPPRESS_PATTERNS) |
| 94 | |
| 95 | |
| 96 | class TimestampFormatter: |
no test coverage detected