add __repr__
method to various classes
#10174
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This adds
__repr__
dunder method to following classes to help with bot development and debugging:AppCommandContext
AppInstallationType
AppCommandPermissions
GuildAppCommandPermissions
InteractionCallbackResponse
Parameter
fromext.commands
modulePlease let me know if this is ok as-is or should I split these 5 additions into individual PRs to preserve atomicity/git blame.
Moreover, the reason I used
self.__class__.__name__
in repr ofParameter
is because if people are already subclassing that class in their projects for customization, not sure. Let me know if I should change it.Bikeshedding post: https://discord.com/channels/336642139381301249/1355473537577652234
Checklist