Project statistics.
| 32 | |
| 33 | |
| 34 | class ProjectStats(BaseModel): |
| 35 | """Project statistics.""" |
| 36 | passing: int = 0 |
| 37 | in_progress: int = 0 |
| 38 | total: int = 0 |
| 39 | percentage: float = 0.0 |
| 40 | |
| 41 | |
| 42 | class ProjectSummary(BaseModel): |
no outgoing calls
no test coverage detected