Add YAPF style + ignore, and format tracked Python files

This commit is contained in:
2025-12-29 18:42:02 -08:00
parent c019c00aed
commit 507946a3e4
108 changed files with 11664 additions and 6494 deletions

View File

@@ -10,12 +10,15 @@ import sys
from models import ProgressBar
_BAR = ProgressBar()
def print_progress(
filename: str, current: int, total: int, speed: float = 0, end: str = "\r"
filename: str,
current: int,
total: int,
speed: float = 0,
end: str = "\r"
) -> None:
_BAR.update(
downloaded=int(current),