Skip to content

Commit 32ab8d8

Browse files
committed
Remove debug print.
1 parent e8641b0 commit 32ab8d8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

discommand/ext/events.py

-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,6 @@ def process_message(bot: Client | AutoShardedClient, prefixes: str | list, messa
103103
"""
104104
if (prefix := _has_prefix(prefixes, message)) and (command := _find_command(bot, prefix, message.content)):
105105
args = _find_args(command, message)
106-
107-
print(f"Args: {args}")
108106
context = _create_context(message, bot, args=args, kwargs={}, prefix=prefixes, command=command, invoked_with=prefix, cls=context)
109107
return command, context
110108
print(command)

0 commit comments

Comments
 (0)