Update remnawave.py

This commit is contained in:
Egor
2025-11-12 02:41:44 +03:00
committed by GitHub
parent d3c445ed2d
commit 75f2cdb04b

View File

@@ -45,7 +45,7 @@ MIGRATION_PAGE_SIZE = 8
def _format_duration(seconds: float) -> str:
if seconds < 1:
return "<1с"
return "менее 1с"
minutes, sec = divmod(int(seconds), 60)
if minutes: