12 lines
275 B
Python
12 lines
275 B
Python
|
|
import discord
|
||
|
|
from libs.LanguageButton import LanguageButton
|
||
|
|
|
||
|
|
|
||
|
|
class PythonLanguageButton(LanguageButton):
|
||
|
|
|
||
|
|
def __init__(self):
|
||
|
|
super().__init__()
|
||
|
|
self.style = discord.ButtonStyle.blurple
|
||
|
|
self.label = "Python"
|
||
|
|
self.disabled: bool = False
|