Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modeled slightly after Converters, allow specifying Converter-like class for context-based default parameters. e.g. ```py class Author(ParamDefault): async def default(self, ctx): return ctx.author async def my_command(ctx, user: discord.Member=Author): ... ``` Also adds a few common cases (Author, Channel, Guild) for current author, ...
- Loading branch information