(self, length: int = 40)
| 1 | class LoadingBar: |
| 2 | def __init__(self, length: int = 40): |
| 3 | self.length = length |
| 4 | self.symbols = ['┈', '░', '▒', '▓'] |
| 5 | |
| 6 | def __call__(self, progress: float) -> str: |
| 7 | p = int(progress * self.length*4 + 0.5) |
nothing calls this directly
no outgoing calls
no test coverage detected