Commit 1c4e3fa
Fix regex group numbers after adding Methods capture
The regex now captures Methods percentage in group 2, which shifted
all subsequent group numbers:
- Group 1: Class name
- Group 2: Methods percentage (captured but not used)
- Group 3: Lines percentage
- Group 4: Covered lines count
- Group 5: Total lines count
Updated the Python code to use the correct group numbers (3, 4, 5)
instead of the old numbers (2, 3, 4).
This fixes the ValueError: invalid literal for int() with base 10: '91.92'
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 1e6e976 commit 1c4e3fa
1 file changed
Lines changed: 4 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
203 | 203 | | |
204 | 204 | | |
205 | 205 | | |
206 | | - | |
207 | | - | |
208 | | - | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
209 | 210 | | |
210 | 211 | | |
211 | 212 | | |
| |||
0 commit comments