Skip to content

Commit

Permalink
style: capitalize FAQGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
TalkingF committed Jul 22, 2024
1 parent 2e3a2a7 commit 5ff5661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/faq.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from discord import app_commands, Interaction


class FaqGroup(app_commands.Group):
class FAQGroup(app_commands.Group):
def __init__(self):
super().__init__(name="faq", description="Answers to common questions")

Expand All @@ -24,4 +24,4 @@ async def cpc(self, interaction: Interaction):
await interaction.response.send_message(cpc_info)


faq_group = FaqGroup()
faq_group = FAQGroup()

0 comments on commit 5ff5661

Please sign in to comment.