Browse Source

Add missing required property to Parameter

pull/8345/head
Pıεяяε 3 years ago
committed by GitHub
parent
commit
4182496713
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      discord/app_commands/commands.py

4
discord/app_commands/commands.py

@ -512,6 +512,10 @@ class Parameter:
def display_name(self) -> str:
return self.__parent.display_name
@property
def required(self) -> bool:
return self.__parent.required
@property
def description(self) -> str:
return str(self.__parent.description)

Loading…
Cancel
Save