Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Luna-Valero committed Jul 8, 2024
1 parent dd9a2e9 commit ebfb864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedcloud_vm_monitoring/site_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def show_quotas(self):
for r in quota:
if r["Resource"] in resources:
if r["Resource"] == "ram":
quota_info[r["Resource"] + " (GB)"] = int(r["Limit"]/1024)
quota_info[r["Resource"] + " (GB)"] = int(r["Limit"] / 1024)
else:
quota_info[r["Resource"]] = r["Limit"]
for k, v in quota_info.items():
Expand Down

0 comments on commit ebfb864

Please sign in to comment.