Source code for byte_bot.byte.views.python

"""Discord UI views used in Python commands."""

from __future__ import annotations

from byte_bot.byte.lib.log import get_logger
from byte_bot.byte.views.abstract_views import ButtonEmbedView

__all__ = ("PEPView",)

logger = get_logger()


[docs] class PEPView(ButtonEmbedView): """View for the Python PEP embed."""