|
8 | 8 | from collections.abc import Sequence |
9 | 9 |
|
10 | 10 | __all__: Sequence[str] = ( |
| 11 | + "AnnualRolesResetCommandCog", |
| 12 | + "AnnualYearChannelsIncrementCommandCog", |
11 | 13 | "ArchiveCommandCog", |
12 | | - "GetTokenAuthorisationCommandCog", |
| 14 | + "ClearRemindersBacklogTaskCog", |
13 | 15 | "CommandErrorCog", |
| 16 | + "CommitteeHandoverCommandCog", |
14 | 17 | "DeleteAllCommandsCog", |
15 | 18 | "EditMessageCommandCog", |
16 | 19 | "EnsureMembersInductedCommandCog", |
17 | | - "MakeApplicantSlashCommandCog", |
18 | | - "MakeApplicantContextCommandsCog", |
19 | | - "CommitteeHandoverCommandCog", |
20 | | - "AnnualRolesResetCommandCog", |
21 | | - "InductSlashCommandCog", |
22 | | - "InductSendMessageCog", |
| 20 | + "GetTokenAuthorisationCommandCog", |
23 | 21 | "InductContextCommandsCog", |
| 22 | + "InductSendMessageCog", |
| 23 | + "InductSlashCommandCog", |
24 | 24 | "KillCommandCog", |
| 25 | + "MakeApplicantContextCommandsCog", |
| 26 | + "MakeApplicantSlashCommandCog", |
25 | 27 | "MakeMemberCommandCog", |
26 | | - "AnnualYearChannelsIncrementCommandCog", |
| 28 | + "ManualModerationCog", |
27 | 29 | "PingCommandCog", |
28 | | - "ClearRemindersBacklogTaskCog", |
29 | 30 | "RemindMeCommandCog", |
30 | 31 | "SendGetRolesRemindersTaskCog", |
31 | 32 | "SendIntroductionRemindersTaskCog", |
| 33 | + "setup", |
32 | 34 | "SourceCommandCog", |
33 | 35 | "StartupCog", |
34 | 36 | "StatsCommandsCog", |
35 | | - "ManualModerationCog", |
36 | 37 | "StrikeCommandCog", |
37 | 38 | "StrikeUserCommandCog", |
38 | 39 | "WriteRolesCommandCog", |
39 | | - "setup", |
40 | 40 | ) |
41 | 41 |
|
42 | 42 |
|
|
82 | 82 | def setup(bot: TeXBot) -> None: |
83 | 83 | """Add all the cogs to the bot, at bot startup.""" |
84 | 84 | cogs: Iterable[type[TeXBotBaseCog]] = ( |
| 85 | + AnnualRolesResetCommandCog, |
| 86 | + AnnualYearChannelsIncrementCommandCog, |
85 | 87 | ArchiveCommandCog, |
86 | | - GetTokenAuthorisationCommandCog, |
| 88 | + ClearRemindersBacklogTaskCog, |
87 | 89 | CommandErrorCog, |
| 90 | + CommitteeHandoverCommandCog, |
88 | 91 | DeleteAllCommandsCog, |
89 | 92 | EditMessageCommandCog, |
90 | 93 | EnsureMembersInductedCommandCog, |
91 | | - CommitteeHandoverCommandCog, |
92 | | - AnnualRolesResetCommandCog, |
93 | | - InductSlashCommandCog, |
94 | | - InductSendMessageCog, |
95 | | - AnnualYearChannelsIncrementCommandCog, |
| 94 | + GetTokenAuthorisationCommandCog, |
96 | 95 | InductContextCommandsCog, |
| 96 | + InductSendMessageCog, |
| 97 | + InductSlashCommandCog, |
97 | 98 | KillCommandCog, |
98 | | - MakeApplicantSlashCommandCog, |
99 | 99 | MakeApplicantContextCommandsCog, |
| 100 | + MakeApplicantSlashCommandCog, |
100 | 101 | MakeMemberCommandCog, |
| 102 | + ManualModerationCog, |
101 | 103 | PingCommandCog, |
102 | | - ClearRemindersBacklogTaskCog, |
103 | 104 | RemindMeCommandCog, |
104 | 105 | SendGetRolesRemindersTaskCog, |
105 | 106 | SendIntroductionRemindersTaskCog, |
106 | 107 | SourceCommandCog, |
107 | 108 | StartupCog, |
108 | 109 | StatsCommandsCog, |
109 | | - ManualModerationCog, |
110 | 110 | StrikeCommandCog, |
111 | 111 | StrikeUserCommandCog, |
112 | 112 | WriteRolesCommandCog, |
|
0 commit comments