We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f787262 commit 9345134Copy full SHA for 9345134
discord/app/commands.py
@@ -510,7 +510,6 @@ def __init__(
510
else:
511
self.input_type = input_type
512
513
- print(self.input_type)
514
self.required: bool = kwargs.pop("required", True)
515
self.choices: List[OptionChoice] = [
516
o if isinstance(o, OptionChoice) else OptionChoice(o)
discord/enums.py
@@ -603,7 +603,6 @@ class OptionType(Enum):
603
604
@classmethod
605
def from_datatype(cls, datatype):
606
- print(datatype)
607
if isinstance(datatype, tuple): # typing.Union has been used
608
datatypes = [cls.from_datatype(op) for op in datatype]
609
if all([x == cls.channel for x in datatypes]):
0 commit comments