diff options
| author | 2021-03-30 21:27:44 +0100 | |
|---|---|---|
| committer | 2021-03-30 21:27:44 +0100 | |
| commit | 57fb66d5b01dabee9d57efdeee419263b7ecd983 (patch) | |
| tree | 6492ebd7d836d89311297ceaeed1c3234428e289 | |
| parent | Change to an Enum for possible closing reasons (diff) | |
Fix copy & paste error in closing reason enum
| -rw-r--r-- | bot/exts/help_channels/_channel.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/help_channels/_channel.py b/bot/exts/help_channels/_channel.py index b8db337fc..2837bc7c5 100644 --- a/bot/exts/help_channels/_channel.py +++ b/bot/exts/help_channels/_channel.py @@ -26,7 +26,7 @@ class ClosingReason(Enum):      CLAIMANT_TIMEOUT = "auto.claimant_timeout"      OTHER_TIMEOUT = "auto.other_timeout"      DELETED = "auto.deleted" -    CLEANUP = "auto.deleted" +    CLEANUP = "auto.cleanup"  def get_category_channels(category: discord.CategoryChannel) -> t.Iterable[discord.TextChannel]: | 
