aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/__init__.py2
-rw-r--r--bot/cogs/__init__.py2
-rw-r--r--bot/cogs/bot.py2
-rw-r--r--bot/cogs/eval.py2
-rw-r--r--bot/cogs/events.py2
-rw-r--r--bot/cogs/logging.py2
-rw-r--r--bot/cogs/security.py2
-rw-r--r--bot/cogs/verification.py2
-rw-r--r--bot/constants.py2
-rw-r--r--bot/decorators.py2
-rw-r--r--bot/interpreter.py2
11 files changed, 0 insertions, 22 deletions
diff --git a/bot/__init__.py b/bot/__init__.py
index ba286add3..9bad5790a 100644
--- a/bot/__init__.py
+++ b/bot/__init__.py
@@ -1,3 +1 @@
# coding=utf-8
-
-__author__ = "Gareth Coles"
diff --git a/bot/cogs/__init__.py b/bot/cogs/__init__.py
index ba286add3..9bad5790a 100644
--- a/bot/cogs/__init__.py
+++ b/bot/cogs/__init__.py
@@ -1,3 +1 @@
# coding=utf-8
-
-__author__ = "Gareth Coles"
diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py
index e8530a8d0..8e29b0edf 100644
--- a/bot/cogs/bot.py
+++ b/bot/cogs/bot.py
@@ -7,8 +7,6 @@ from dulwich.repo import Repo
from bot.constants import VERIFIED_ROLE
from bot.decorators import with_role
-__author__ = "Gareth Coles"
-
class Bot:
"""
diff --git a/bot/cogs/eval.py b/bot/cogs/eval.py
index cf4b69eca..6fb7f7b06 100644
--- a/bot/cogs/eval.py
+++ b/bot/cogs/eval.py
@@ -8,8 +8,6 @@ from bot.constants import OWNER_ROLE
from bot.decorators import with_role
from bot.interpreter import Interpreter
-__author__ = "Careth Goles"
-
class EvalCog: # Named this way because a flake8 plugin isn't case-sensitive
"""
diff --git a/bot/cogs/events.py b/bot/cogs/events.py
index a64859d77..7224b5a5c 100644
--- a/bot/cogs/events.py
+++ b/bot/cogs/events.py
@@ -5,8 +5,6 @@ from discord.ext.commands import (
NoPrivateMessage, UserInputError
)
-__author__ = "Gareth Coles"
-
class Events:
"""
diff --git a/bot/cogs/logging.py b/bot/cogs/logging.py
index 14b2ac4c5..34c06909c 100644
--- a/bot/cogs/logging.py
+++ b/bot/cogs/logging.py
@@ -2,8 +2,6 @@
from discord import Message
from discord.ext.commands import AutoShardedBot
-__author__ = "Gareth Coles"
-
class Logging:
"""
diff --git a/bot/cogs/security.py b/bot/cogs/security.py
index 6827af690..421df9cfc 100644
--- a/bot/cogs/security.py
+++ b/bot/cogs/security.py
@@ -1,8 +1,6 @@
# coding=utf-8
from discord.ext.commands import AutoShardedBot, Context
-__author__ = "Gareth Coles"
-
class Security:
"""
diff --git a/bot/cogs/verification.py b/bot/cogs/verification.py
index d4fbe5d78..75c4cf92c 100644
--- a/bot/cogs/verification.py
+++ b/bot/cogs/verification.py
@@ -5,8 +5,6 @@ from discord.ext.commands import AutoShardedBot, Context, command
from bot.constants import VERIFICATION_CHANNEL, VERIFIED_ROLE
from bot.decorators import in_channel, without_role
-__author__ = "Careth Goles"
-
class Verification:
"""
diff --git a/bot/constants.py b/bot/constants.py
index af1830e07..97f47f49a 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -1,7 +1,5 @@
# coding=utf-8
-__author__ = "Gareth Coles"
-
VERIFICATION_CHANNEL = 352442727016693763
diff --git a/bot/decorators.py b/bot/decorators.py
index 833094210..16d6b72fd 100644
--- a/bot/decorators.py
+++ b/bot/decorators.py
@@ -2,8 +2,6 @@
from discord.ext import commands
from discord.ext.commands import Context
-__author__ = "Careth Goles"
-
def with_role(*role_ids: int):
async def predicate(ctx: Context):
diff --git a/bot/interpreter.py b/bot/interpreter.py
index 2e1a6664a..cddc6c5a1 100644
--- a/bot/interpreter.py
+++ b/bot/interpreter.py
@@ -2,8 +2,6 @@
from code import InteractiveInterpreter
from io import StringIO
-__author__ = 'Gareth Coles'
-
CODE_TEMPLATE = """
async def _func():
{0}