add rating info when listing artist mvs

This commit is contained in:
alacleaker 2024-04-22 22:57:27 -03:00
parent 3590d99063
commit 9f0b25e1d1

View File

@ -222,6 +222,7 @@ class Downloader:
self.millis_to_min_sec(
music_video["attributes"]["durationInMillis"]
),
f'{music_video["attributes"].get("contentRating", "None").title():<8}',
music_video["attributes"]["name"],
],
),
@ -230,7 +231,7 @@ class Downloader:
for music_video in music_videos
]
selected = inquirer.select(
message=f"Select which music videos to download:",
message="Select which music videos to download:",
choices=choices,
multiselect=True,
).execute()