Skip to content

Commit

Permalink
Free space Units update
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed May 13, 2024
1 parent 0d0d6d1 commit 3111d9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qBitrr/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
CACHE = TTLCache(maxsize=50, ttl=60)

UNITS = {
"k": 1e3,
"m": 1e6,
"g": 1e9,
"t": 1e12,
"k": 1024,
"m": 1048576,
"g": 1073741824,
"t": 1099511627776,
}


Expand Down

0 comments on commit 3111d9b

Please sign in to comment.