diff options
| author | 2019-04-24 17:20:30 -0400 | |
|---|---|---|
| committer | 2019-04-24 17:20:30 -0400 | |
| commit | b611ff92ea69cc1ac6b82aa3f06b9d9675e86a82 (patch) | |
| tree | 0fdb47359609c44479a331b5684dcb3d50a1ff56 /bot/bot.py | |
| parent | Remove docstring newline linting from ignored codes (diff) | |
Relint Seasonalbot with new linting rules
Diffstat (limited to '')
| -rw-r--r-- | bot/bot.py | 3 | 
1 files changed, 0 insertions, 3 deletions
@@ -25,7 +25,6 @@ class SeasonalBot(commands.Bot):      def load_extensions(self, exts: List[str]):          """Unload all current extensions, then load the given extensions.""" -          # Unload all cogs          extensions = list(self.extensions.keys())          for extension in extensions: @@ -43,7 +42,6 @@ class SeasonalBot(commands.Bot):      async def send_log(self, title: str, details: str = None, *, icon: str = None):          """Send an embed message to the devlog channel.""" -          devlog = self.get_channel(constants.Channels.devlog)          if not devlog: @@ -60,7 +58,6 @@ class SeasonalBot(commands.Bot):      async def on_command_error(self, context, exception):          """Check command errors for UserInputError and reset the cooldown if thrown.""" -          if isinstance(exception, commands.UserInputError):              context.command.reset_cooldown(context)          else:  |