mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 01:45:28 +00:00
[cli] Remove redundant conditional
This commit is contained in:
parent
c0d67882bb
commit
66ef0f3d5e
|
@ -1206,7 +1206,7 @@ class LegendaryCLI:
|
|||
percentage = (processed / total_size) * 100.0
|
||||
num += 1
|
||||
|
||||
if (delta := ((current_time := time.time()) - last_update)) > 1 or (not last_processed and delta > 1):
|
||||
if (delta := ((current_time := time.time()) - last_update)) > 1:
|
||||
last_update = current_time
|
||||
speed = (processed - last_processed) / 1024 / 1024 / delta
|
||||
last_processed = processed
|
||||
|
|
Loading…
Reference in a new issue