>>46580832>convert manually every single timethis thought never cross your mind?
its shitcode but its valid
dont use that use this instead
>from PIL import Image>import os>for file in os.listdir(os.getcwd()):>if file.endswith(".webp"):>with Image.open(file).convert("RGB") as F:>F.save(f'{file[:-5]}.png', 'png')if you want it to delete the webp file add
>os.remove(file)in the loop
add formatting yourself