(fullVersion string)
| 351 | } |
| 352 | |
| 353 | func normalizeVersion(fullVersion string) string { |
| 354 | parts := strings.Split(fullVersion, ".") |
| 355 | if len(parts) >= 2 { |
| 356 | return parts[0] + "." + parts[1] |
| 357 | } |
| 358 | return fullVersion |
| 359 | } |
| 360 | |
| 361 | type pythonTool struct { |
| 362 | Path string |
no outgoing calls
no test coverage detected