mirror of
https://github.com/ethanrusz/youtube-url-corrector.git
synced 2024-11-22 09:57:45 -05:00
Update formatting
This commit is contained in:
parent
dc84305937
commit
08557106b4
1 changed files with 2 additions and 1 deletions
3
bot.py
3
bot.py
|
@ -37,7 +37,8 @@ async def on_message(message):
|
||||||
|
|
||||||
async def get_youtube_id(url: str, ignore_playlist=True) -> str:
|
async def get_youtube_id(url: str, ignore_playlist=True) -> str:
|
||||||
query = urlparse(url)
|
query = urlparse(url)
|
||||||
if query.hostname == 'youtu.be': return query.path[1:]
|
if query.hostname == 'youtu.be':
|
||||||
|
return query.path[1:]
|
||||||
if query.hostname in {'www.youtube.com', 'youtube.com', 'music.youtube.com'}:
|
if query.hostname in {'www.youtube.com', 'youtube.com', 'music.youtube.com'}:
|
||||||
if not ignore_playlist:
|
if not ignore_playlist:
|
||||||
# use case: get playlist id not current video in playlist
|
# use case: get playlist id not current video in playlist
|
||||||
|
|
Loading…
Reference in a new issue