Skip to content

Commit

Permalink
src/reports: Refactor reports.py into reports module
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrxyz committed Nov 30, 2024
1 parent 228c210 commit 24ff03d
Show file tree
Hide file tree
Showing 10 changed files with 1,397 additions and 1,470 deletions.
6 changes: 4 additions & 2 deletions src/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
from .github.views import GitHubInviteView
from .leaders import AwayView
from .projects import SoftwareProjectsView
from .reports import ReportsCog, ReportsView, StartReviewView
from .reports.cog import ReportsCog
from .reports.member_services import ReportsView
from .reports.review import StartReviewView
from .roles import MechanicalRolesView, SummerRolesView, TeamRolesView
from .tasks import TaskManager
from .testing import TestingSignUpView
Expand Down Expand Up @@ -234,7 +236,7 @@ async def setup_hook(self) -> None:
"src.leaders",
"src.logger",
"src.projects",
"src.reports",
"src.reports.cog",
"src.roles",
"src.testing",
"src.webhooks",
Expand Down
2 changes: 1 addition & 1 deletion src/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import discord
from discord.ext import commands, tasks

from .constants import Team
from .github.types import SoftwareProject, SoftwareProjectStatus
from .reports import Team
from .tasks import run_on_weekday
from .views import MILBotView

Expand Down
Loading

0 comments on commit 24ff03d

Please sign in to comment.