aboutsummaryrefslogtreecommitdiffstats
path: root/botcore
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-03-27 17:30:36 +0100
committerGravatar Chris Lovering <[email protected]>2022-03-31 20:53:41 +0100
commit3e7142447a81cf216e4c3f1237f2ea91aa161dcf (patch)
treeb55bd2fe9dab6a16a343d69b14a9fe07e1c6d3e7 /botcore
parentMark async-rediscache as an optional extra dependency (diff)
Remove inappropriate abstractmethod tags
Diffstat (limited to 'botcore')
-rw-r--r--botcore/_bot.py3
1 files changed, 0 insertions, 3 deletions
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."""
...