From 3e7142447a81cf216e4c3f1237f2ea91aa161dcf Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sun, 27 Mar 2022 17:30:36 +0100 Subject: Remove inappropriate abstractmethod tags --- botcore/_bot.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'botcore/_bot.py') diff --git a/botcore/_bot.py b/botcore/_bot.py index d21ed6b9..82abbdc0 100644 --- a/botcore/_bot.py +++ b/botcore/_bot.py @@ -2,7 +2,6 @@ import asyncio import socket import types import warnings -from abc import abstractmethod from contextlib import suppress from typing import Optional @@ -194,7 +193,6 @@ class BotBase(commands.Bot): self._guild_available.set() - @abstractmethod async def log_to_dev_log(self, message: str) -> None: """Log the given message to #dev-log.""" ... @@ -227,7 +225,6 @@ class BotBase(commands.Bot): except Exception as e: raise StartupError(e) - @abstractmethod async def ping_services() -> None: """Ping all required services on setup to ensure they are up before starting.""" ... -- cgit v1.2.3