Check if any violations were found.
(self)
| 116 | return len(self.violations) |
| 117 | |
| 118 | def has_violations(self) -> bool: |
| 119 | """Check if any violations were found.""" |
| 120 | return len(self.violations) > 0 |
| 121 | |
| 122 | |
| 123 | class FileContentChecker(ABC): |
no outgoing calls
no test coverage detected