Get number of files with violations.
(self)
| 112 | return sum(fv.violation_count() for fv in self.violations.values()) |
| 113 | |
| 114 | def file_count(self) -> int: |
| 115 | """Get number of files with violations.""" |
| 116 | return len(self.violations) |
| 117 | |
| 118 | def has_violations(self) -> bool: |
| 119 | """Check if any violations were found.""" |
no outgoing calls
no test coverage detected