Skip to content

Commit

Permalink
呃呃
Browse files Browse the repository at this point in the history
  • Loading branch information
PencilMario committed Feb 25, 2024
1 parent 18e261f commit 6153474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TrayIcon.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(self):
"" if not msg else "| 自动暂停[{}]".format(msg)
))

def _seconds_to_hms(seconds):
def _seconds_to_hms(self, seconds):
hours, remainder = divmod(seconds, 3600)
minutes, seconds = divmod(remainder, 60)
return f"{hours:02}{minutes:02}{seconds:02}秒"
Expand Down

0 comments on commit 6153474

Please sign in to comment.