Skip to content

Commit

Permalink
Fix errors created during rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
raccube committed Aug 28, 2024
1 parent 808bf54 commit 1d70c10
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions src/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,22 @@
import json
import asyncio
import logging
from typing import List, Tuple, AsyncGenerator
from typing import List

import discord
from discord import app_commands
from discord.ext import tasks

from src.commands.stats import (
SubscribedMessage,
stats_subscribe,
load_subscribed_messages,
SUBSCRIBE_MSG_FILE,
Stats,
post_stats,
)
from src.rss import check_posts
from src.teams import TeamsData
from src.constants import (
SPECIAL_ROLE,
VERIFIED_ROLE,
CHANNEL_PREFIX,
VOLUNTEER_ROLE,
TEAM_LEADER_ROLE,
FEED_CHANNEL_NAME,
FEED_CHECK_INTERVAL,
TEAM_LEADER_ROLE,
ANNOUNCE_CHANNEL_NAME,
WELCOME_CATEGORY_NAME,
)
Expand All @@ -39,7 +31,6 @@
create_voice,
create_team_channel,
)
from src.commands.passwd import passwd
from src.commands.stats import (
Stats,
post_stats,
Expand All @@ -48,6 +39,7 @@
SUBSCRIBE_MSG_FILE,
load_subscribed_messages,
)
from src.commands.passwd import passwd


class BotClient(discord.Client):
Expand Down

0 comments on commit 1d70c10

Please sign in to comment.