Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawn-India committed Sep 25, 2024
1 parent e1e44a5 commit 307ba9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bot/helper/task_utils/status_utils/meta_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ def size(self):
def status(self):
return MirrorStatus.STATUS_METADATA

def speed(self):
return "0B/s"

def task(self):
return self

Expand Down
3 changes: 3 additions & 0 deletions bot/helper/task_utils/status_utils/queue_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ def status(self):
return MirrorStatus.STATUS_QUEUEDL
return MirrorStatus.STATUS_QUEUEUP

def speed(self):
return "0B/s"

def task(self):
return self

Expand Down

0 comments on commit 307ba9c

Please sign in to comment.