Skip to content

Commit

Permalink
Update companies.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hamim23z authored Jan 30, 2023
1 parent b2c8d8e commit adf7de2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions companies.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
from attr import field
import discord
from discord.ext import commands
import random

description = '''An example bot to showcase the discord.ext.commands extension
module. There are a number of utility commands being showcased here.'''

intents = discord.Intents.default()
intents = discord.Intents.all()
intents.members = True
intents.message_content = True

bot = commands.Bot(command_prefix='?', description=description, intents=intents)

Expand Down

0 comments on commit adf7de2

Please sign in to comment.