Sebastiaan Zeeff
Sebastiaan Zeeff
I don't see why we'd need the added complexity and added work. Our `on_typing` could be as simple as ```py @Cog.listener() async def on_typing(self, channel, user, when): if in_category(channel.id, Category.in_use):...
There are multiple people that have expressed interest in this issue, maybe we can work out a collaboration? I know Patrol was looking for someone to collaborate with for this...
Hi! You mentioned on server yesterday that you want to take a shot at this, but would really like to work together with someone. Maybe you and @glowingrunes can work...
@imPatrol and @glowingrunes are going to collaborate on this. I'll mark it as "in progress".
~~I've looked, but I haven't found a built-in way to do this with DRF. Since a lot of the serializers already have some sort of custom validation function, I think...
The more I look into this, the more complicated it becomes. The main problem is that there isn't a single unit that processes the GET parameters, but multiple independent "filter...
Just to make sure I understand your proposal, you'd like to simply write actual files to disk rather than faking the filesystem in tests? Should the tests also clean up...
Alright, they are just static test resources in that case. Cool, I'll have a stab at it.
I've opened a PR for `SCRIPT EXISTS` and `SCRIPT FLUSH`. Not sure if the implementation is up to standards, but it's here: #281.
We initially designed the RedisCache around the `collections.abc.MutableMapping` interface, but that did not match well with the commands Redis offers us. That's why we decided to step away from the...