From 6757ad6b31ce563c77a200413e1dd68823428ad0 Mon Sep 17 00:00:00 2001 From: DeveloperAnonymous <40847862+DeveloperAnonymous@users.noreply.github.com> Date: Thu, 15 Feb 2024 23:35:34 -0500 Subject: [PATCH] Fixed pylint --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 87b2e65..044025f 100644 --- a/.pylintrc +++ b/.pylintrc @@ -6,7 +6,8 @@ min-public-methods=0 [MESSAGES CONTROL] # Disable the message "C0114: Missing module docstring" # Disabled the message "W0511: fixme" -disable=C0114, W0511 +# Disabled the message "R0913: Too many arguments" +disable=C0114, W0511, R0913 [FORMAT] # Disabled the message "W0603: Using the global statement"