We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6923ee8 + f20b765 commit 7b9ef16Copy full SHA for 7b9ef16
1 file changed
chat.py
@@ -9,15 +9,11 @@ def __init__(self):
9
10
async def event_ready(self):
11
# We are logged in and ready to chat and use commands...
12
- print(f'Connected on {self.nick} with success ! - Twitch Bot')
+ print(f'Hello {self.nick}')
13
14
@commands.command()
15
- async def hello(self, ctx: commands.Context):
16
- # Send a hello back!
17
- await ctx.send(f'Hello {ctx.author.name}!')
18
-
19
async def event_message(self, ctx: commands.Context):
20
- print(f"From {ctx.author.name}: {ctx.content}")
+ print(f"{ctx.author.name} : {ctx.content}")
21
22
bot = Bot()
23
bot.run()
0 commit comments