From deb39325473d1fb01937a57f608e524647a2277a Mon Sep 17 00:00:00 2001 From: harisreedhar Date: Mon, 9 Feb 2026 17:58:13 +0530 Subject: [PATCH] change unit to GB --- facefusion/system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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': {