randydev commited on
Commit
25c5f41
·
verified ·
1 Parent(s): 700f9c4

Update chatbot/plugins/chat.py

Browse files
Files changed (1) hide show
  1. chatbot/plugins/chat.py +1 -1
chatbot/plugins/chat.py CHANGED
@@ -165,7 +165,7 @@ def humanbytes(size):
165
  raised_to_pow += 1
166
  return str(round(size, 2)) + " " + dict_power_n[raised_to_pow] + "B"
167
 
168
- def time_formatter(milliseconds: int) -> str:
169
  """Time Formatter"""
170
  seconds, milliseconds = divmod(int(milliseconds), 1000)
171
  minutes, seconds = divmod(seconds, 60)
 
165
  raised_to_pow += 1
166
  return str(round(size, 2)) + " " + dict_power_n[raised_to_pow] + "B"
167
 
168
+ def time_formatter(milliseconds: int) -> str:
169
  """Time Formatter"""
170
  seconds, milliseconds = divmod(int(milliseconds), 1000)
171
  minutes, seconds = divmod(seconds, 60)