diff --git a/facefusion/system.py b/facefusion/system.py index f3546e08..9b3ba33f 100644 --- a/facefusion/system.py +++ b/facefusion/system.py @@ -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': {