diff --git a/bot/helper/ext_utils/bot_utils.py b/bot/helper/ext_utils/bot_utils.py index 83a51fa..c1fc21b 100644 --- a/bot/helper/ext_utils/bot_utils.py +++ b/bot/helper/ext_utils/bot_utils.py @@ -95,15 +95,18 @@ def get_readable_message(progress_list: list = None): def get_readable_time(seconds: int) -> str: result = '' (days, remainder) = divmod(seconds, 86400) + days = int(days) if days != 0: result += f'{days}d' (hours, remainder) = divmod(remainder, 3600) + hours = int(hours) if hours != 0: result += f'{hours}h' (minutes, seconds) = divmod(remainder, 60) + minutes = int(minutes) if minutes != 0: result += f'{minutes}m' - + seconds = int(seconds) result += f'{seconds}s' return result