(steps)
| 16 | |
| 17 | |
| 18 | def roundSteps(steps): |
| 19 | if max(steps) >= 1000: |
| 20 | start, end = 0, round(max(steps), -3) |
| 21 | elif max(steps) >= 100: |
| 22 | start, end = 0, round(max(steps), -2) |
| 23 | elif max(steps) >= 10: |
| 24 | start, end = 0, round(max(steps), -1) |
| 25 | else: |
| 26 | start, end = 0, max(steps) |
| 27 | return start, end |
| 28 | |
| 29 | |
| 30 | def getLossesFolder(rootFolder, prefix="LogFin"): |
nothing calls this directly
no outgoing calls
no test coverage detected