Make async and add clothing upload

This commit is contained in:
2025-12-21 17:39:27 -05:00
parent 18eb2d611f
commit 97380f3160
5 changed files with 142 additions and 84 deletions
+2 -2
View File
@@ -67,7 +67,7 @@ class ClothingAsset(RbxAsset):
asset_type=asset_type,
)
def get_image(self) -> bytes:
async def get_image(self) -> bytes:
from utils import roblox_service
return roblox_service.fetch_clothing_image(self)
return await roblox_service.fetch_clothing_image(self)