mirror of
https://github.com/Dangoware/oden-music-bot.git
synced 2025-04-19 07:12:57 -05:00
Added gitignore for pycache
This commit is contained in:
parent
7608c80261
commit
deacd42e6e
3 changed files with 6 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
.env
|
||||
__pycache__/
|
||||
|
|
Binary file not shown.
|
@ -28,7 +28,11 @@ bot = commands.Bot(command_prefix="!",intents=discord.Intents.all(), shard_count
|
|||
@bot.event
|
||||
async def on_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()
|
||||
|
|
Loading…
Reference in a new issue