heres the specific code i am running:
``def get_map_thumbnail(self, map_name: str) -> str:
if not map_name:
return f"https://openfront.io/images/GameplayScreenshot.png"
# Lowercase and remove spaces, dots, and parentheses
normalized_map = re.sub(r'[\s.()]+', '', map_name.lower())
if normalized_map:
encoded_map = urllib.parse.quote(normalized_map)
return f"https://openfront.io/maps/{encoded_map}/thumbnail.webp"
return f"https://openfront.io/images/GameplayScreenshot.png"``
like i said, if its just the way that im doing it, my bad (i converted deshack's ts to py)