chore: fix RUF059 violations

This commit is contained in:
Matthias
2025-09-15 19:15:43 +02:00
parent 5e2f4924d6
commit 95a710d4a8
4 changed files with 5 additions and 5 deletions

View File

@@ -78,5 +78,5 @@ def format_duration(td: timedelta) -> str:
"""
d = td.days
h, r = divmod(td.seconds, 3600)
m, s = divmod(r, 60)
m, _ = divmod(r, 60)
return f"{d}d {h:02d}:{m:02d}"