Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidWylie-ZUK committed Jan 4, 2024
1 parent 22ef8de commit 6f38d77
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion roll_witch/dice_bot/event_listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

class EventListenerClient(discord.Client):
def __init__(self):
intents: discord.Intents = discord.Intents(messages=True, guilds=True, message_content=True )
intents: discord.Intents = discord.Intents(
messages=True,
guilds=True,
message_content=True
)
super().__init__(intents=intents)

async def on_ready(self):
Expand Down

0 comments on commit 6f38d77

Please sign in to comment.