Reformatted and cleaned up everything

This commit is contained in:
2025-04-16 18:05:07 +02:00
parent e90694f0aa
commit a100324265
9 changed files with 40 additions and 32 deletions

View File

@@ -18,9 +18,7 @@ async def command_language(app: PyroClient, message: Message):
buttons: List[InlineButton] = []
for locale, data in app.in_every_locale("metadata").items():
buttons.append(
InlineButton(f"{data['flag']} {data['name']}", f"language:{locale}")
)
buttons.append(InlineButton(f"{data['flag']} {data['name']}", f"language:{locale}"))
keyboard.add(*buttons)