Soheab
Soheab
Does the config have a device?
The config is supposed to be at `/data/config.json/config.json` With the last one being the actual file. ``` data/ config.json/ config.json src/ iSponsorBlockTv/ ... ... ```
What's the reason the new message isn't attached to the `message` attribute rather than having to await the `original_response` method?
> Run `black`. Done.
> I have two main issues with this. > > 1. The current implementation wastes memory for those who do not care about this feature (i.e. most people) > 2....
https://github.com/discord/discord-api-docs/issues/6629 Maybe relevant? Make sure you're doing it on a guild with community features enabled. But you should use the new `dms_disabled_until=` kwarg either way.
Bump. Would be nice if `name` was documented too...
Can't this use the existing Message class? With a potential `_from_snapshot` classmethod
The setter for `Button.custom_id` does set the attribute on the latest commit: https://github.com/Pycord-Development/pycord/blob/ca91b3e22d9f521dbb6f1da4595efea7093fc276/discord/ui/button.py#L187 I cannot repro this. ```py import discord button = discord.ui.Button(label="hello") button.custom_id = "my_custom_id" print( button.custom_id, # my_custom_id...
I feel like a better solution is just adding a kwarg called `author` with type `Union[discord.Member, discord.User]` to `.send`and making `ctx` optional as its only use is [setting the `user`...