aboutsummaryrefslogtreecommitdiff
path: root/code/cogs/play.py
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-28 00:08:32 -0600
committerParker <contact@pkrm.dev>2024-11-28 00:08:32 -0600
commit1ce91a4b0984407bcd08b4fbf7448d7f4dbcead2 (patch)
tree8e6e0e4b0615081dfe8b1e99726bc57d77384f9b /code/cogs/play.py
parent382c42262954767acc3f5ee3e008e03acbfc4f26 (diff)
Update comments
Diffstat (limited to 'code/cogs/play.py')
-rw-r--r--code/cogs/play.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/code/cogs/play.py b/code/cogs/play.py
index 38a91b8..cc3e893 100644
--- a/code/cogs/play.py
+++ b/code/cogs/play.py
@@ -46,6 +46,7 @@ class Play(commands.Cog):
embed=embed, ephemeral=True
)
+ # Check for custom sources (Apple Music/Spotify)
if "music.apple.com" in query:
results, embed = await parse_custom_source(
self, "apple", query, interaction.user
@@ -56,10 +57,7 @@ class Play(commands.Cog):
self, "spotify", query, interaction.user
)
- ###
- ### For anything else, use default Lavalink providers to search the query
- ###
-
+ # For anything else, use default Lavalink providers to search the query
else:
# If the query is not a URL, begin searching
if not url_rx.match(query):