Nat1anWasTaken / Lava

Use of FIXME/XXX/TODO encountered PYL-W0511
Documentation
Minor
3 occurrences in this check
TODO: Complete this embed
218
219
220def generate_display_embed(bot: Bot, player: DefaultPlayer) -> Embed:
221    # TODO: Complete this embed222    embed = Embed()
223
224    if player.is_playing:
TODO: Ask user if they want to add the whole playlist or just some tracks
114                )
115
116            case LoadType.PLAYLIST:
117                # TODO: Ask user if they want to add the whole playlist or just some tracks118
119                for iter_index, track in enumerate(results.tracks):
120                    player.add(
TODO: Add support for spotify, apple music etc...
 71
 72        player.store("channel", interaction.channel.id)
 73
 74        # TODO: Add support for spotify, apple music etc... 75        url_rx = re.compile(r"https?://(?:www\.)?.+")
 76
 77        if not url_rx.match(query):