Fix a couple of linting errors

This commit is contained in:
Marc Di Luzio 2024-08-13 23:08:50 +01:00
parent 682d31afe4
commit 9131fa48ca
2 changed files with 1 additions and 3 deletions

View file

@ -13,8 +13,7 @@ logger.setLevel(logging.INFO)
# Increment when adjusting the custom_id so we don't confuse old users
_MATCH_BUTTON_CUSTOM_ID_VERSION = 1
_MATCH_BUTTON_CUSTOM_ID_PREFIX = f'match:v{
_MATCH_BUTTON_CUSTOM_ID_VERSION}:'
_MATCH_BUTTON_CUSTOM_ID_PREFIX = f'match:v{_MATCH_BUTTON_CUSTOM_ID_VERSION}:'
class DynamicGroupButton(discord.ui.DynamicItem[discord.ui.Button],

View file

@ -8,7 +8,6 @@ import config
import state
from cogs.matchy_cog import MatchyCog
from cogs.owner_cog import OwnerCog
import cogs.match_button as match_button
State = state.load_from_file()