From d344bc92bd479173a0d1c70812892aa9c5cb90db Mon Sep 17 00:00:00 2001 From: DeveloperAnonymous <40847862+DeveloperAnonymous@users.noreply.github.com> Date: Mon, 9 Dec 2024 17:39:29 -0500 Subject: [PATCH] Fixed pylint issue --- bot/botcommands/moderation.py | 1 - bot/db/models/user.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bot/botcommands/moderation.py b/bot/botcommands/moderation.py index 0a340d4..24785b9 100644 --- a/bot/botcommands/moderation.py +++ b/bot/botcommands/moderation.py @@ -122,7 +122,6 @@ def __init__( author: discord.Member, reason: str, parsed_time: ParsedTime = None, - /, ): self.strike = strike self.target = target diff --git a/bot/db/models/user.py b/bot/db/models/user.py index c0f9ec4..0ee54e9 100644 --- a/bot/db/models/user.py +++ b/bot/db/models/user.py @@ -41,7 +41,7 @@ def __init__( name: str, email: str, is_student: bool, - /, + *, is_teacher: bool = False, is_it_student: bool = False, student_id: int = None,