Skip to content

Commit

Permalink
fix check sys tool
Browse files Browse the repository at this point in the history
  • Loading branch information
ameen-91 committed Nov 14, 2024
1 parent c3d9546 commit 4a3038e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langforge_os/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def check_sys_tool(check: str):
"Memory Usage (%)": memory_info.percent,
}

disk_info = psutil.disk_usage("/mnt/c")
disk_info = psutil.disk_usage("/")
disk_details = {
"Total Disk Space (GB)": round(disk_info.total / (1024**3), 2),
"Used Disk Space (GB)": round(disk_info.used / (1024**3), 2),
Expand Down

0 comments on commit 4a3038e

Please sign in to comment.