Skip to content

Commit 9345134

Browse files
remove debug prints
1 parent f787262 commit 9345134

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

discord/app/commands.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,6 @@ def __init__(
510510
else:
511511
self.input_type = input_type
512512

513-
print(self.input_type)
514513
self.required: bool = kwargs.pop("required", True)
515514
self.choices: List[OptionChoice] = [
516515
o if isinstance(o, OptionChoice) else OptionChoice(o)

discord/enums.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,6 @@ class OptionType(Enum):
603603

604604
@classmethod
605605
def from_datatype(cls, datatype):
606-
print(datatype)
607606
if isinstance(datatype, tuple): # typing.Union has been used
608607
datatypes = [cls.from_datatype(op) for op in datatype]
609608
if all([x == cls.channel for x in datatypes]):

0 commit comments

Comments
 (0)