aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-10-10 21:04:35 +0100
committerGravatar Chris Lovering <[email protected]>2022-10-10 21:55:29 +0100
commit3582ff5b648f00b26de9238dc3711416b57291f6 (patch)
tree6005b23ad49ed6cc8c79c3aac17804fa95acdad7
parentBump all deps to latest (diff)
noqa an abstract class with no abstract methods
This warning was added in the latest version of flake8-bugbear, but can be ignored in this instance.
-rw-r--r--bot/utils/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/utils/helpers.py b/bot/utils/helpers.py
index 3501a3933..621198752 100644
--- a/bot/utils/helpers.py
+++ b/bot/utils/helpers.py
@@ -4,7 +4,7 @@ from typing import Optional
from discord.ext.commands import CogMeta
-class CogABCMeta(CogMeta, ABCMeta):
+class CogABCMeta(CogMeta, ABCMeta): # noqa: B024 (Ignore abstract class with no abstract methods.)
"""Metaclass for ABCs meant to be implemented as Cogs."""