mirror of
https://github.com/facefusion/facefusion.git
synced 2026-04-29 04:55:57 +02:00
change unit to GB
This commit is contained in:
@@ -28,12 +28,12 @@ def detect_disk_metrics(drive_paths : List[str]) -> List[DiskMetrics]:
|
||||
'total':
|
||||
{
|
||||
'value': int(disk_usage.total / (1024 * 1024 * 1024)),
|
||||
'unit': 'GiB'
|
||||
'unit': 'GB'
|
||||
},
|
||||
'free':
|
||||
{
|
||||
'value': int(disk_usage.free / (1024 * 1024 * 1024)),
|
||||
'unit': 'GiB'
|
||||
'unit': 'GB'
|
||||
},
|
||||
'utilization':
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user