(self)
| 199 | return "" |
| 200 | |
| 201 | def format_pos(self) -> str: |
| 202 | pos = str(self.pos) |
| 203 | if self.length is not None: |
| 204 | pos += f"/{self.length}" |
| 205 | return pos |
| 206 | |
| 207 | def format_pct(self) -> str: |
| 208 | return f"{int(self.pct * 100): 4}%"[1:] |
no outgoing calls