Remove debug print statement from get_inventory function

This commit is contained in:
Nawaz Haider
2026-01-15 19:34:17 +06:00
parent 02bb3eefee
commit d7e2f8d04f
-1
View File
@@ -11,5 +11,4 @@ def get_inventory(slug=None):
for pos in response:
if pos and pos.get("slug") == slug:
size += pos.get("size")
print(pos)
return round(size / 5)