Added gitignore for pycache

This commit is contained in:
G2-Games 2024-08-23 14:54:07 -05:00
parent 7608c80261
commit deacd42e6e
3 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
.env .env
__pycache__/

View file

@ -28,7 +28,11 @@ bot = commands.Bot(command_prefix="!",intents=discord.Intents.all(), shard_count
@bot.event @bot.event
async def on_ready(): async def on_ready():
print("Bot is ready!") print("Bot is ready!")
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="ななひら")) await bot.change_presence(
activity=discord.Activity(
type=discord.ActivityType.listening, name="ななひら"
)
)
@bot.command() @bot.command()