Skip to content

Commit bea8d00

Browse files
committed
Update music.py
1 parent 340050f commit bea8d00

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/cogs/music.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ def __init__(self, bot):
9191
self.bot = bot
9292
# -------------------------------------
9393
self.properties = {}
94-
# "guild_id": str -> {
94+
# FORMAT OF DICT self.properties:
95+
# [str(guild.id)] -> {
9596
# "is_playing": False,
9697
# "currently_playing_player": None,
9798
# "current": -1,
@@ -103,7 +104,8 @@ def __init__(self, bot):
103104
# }
104105
# -------------------------------------
105106
self.music_queue = {}
106-
# [guild.id] -> [0 player | 1 ctx | 2 url(from_user) | 3 stream_or_not]
107+
# FORMAT OF DICT self.music_queue:
108+
# [str(guild.id)] -> [0 player | 1 ctx | 2 url(from_user) | 3 stream_or_not]
107109
# -------------------------------------
108110
return
109111
# ----------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)