Paillat
Paillat
w/out #2645: ``` Traceback (most recent call last): File "/home/paillat/Documents/pycord/pycord/test_simple.py", line 11, in bot = discord.Bot() File "/home/paillat/Documents/pycord/pycord/discord/bot.py", line 1171, in __init__ super().__init__(*args, **options) ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^ File "/home/paillat/Documents/pycord/pycord/discord/bot.py", line 97, in...
Please hold this one
That was me :sob:
No stress, this one is not urgent
cc @Lulalaby when you have time :)
Yeah that makes sense
This already uses try_enum wherever needed, I changed from png to None because it is better representative in my opinion
So it's not the format type, it's the file extension. The format type will always be an integer, and if that integer exists in the enum it will be made...
Can repro Test Code ```py import discord, asyncio, logging from os import getenv from dotenv import load_dotenv load_dotenv() logging.basicConfig( format="%(asctime)s | %(levelname)s | %(message)s", datefmt="%Y-%m-%d %H:%M:%S", level=logging.INFO) bot = discord.Client()...
Hello ! Thank you for your issue. This is currently fixed by #2645. In the meantime I found that a workaround to your issue is adding `bot.loop = get_running_loop()` like...