From 4043825b71ce8b101af302e06758e31c815502df Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh <102361830+SeaswimmerTheFsh@users.noreply.github.com> Date: Mon, 19 Jun 2023 17:18:20 -0400 Subject: [PATCH] (hopefully) final pylint change changed from per-file pylint to a pylint config file --- .pylintrc | 5 +++++ main.py | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..a07743f --- /dev/null +++ b/.pylintrc @@ -0,0 +1,5 @@ + [MESSAGES CONTROL] + disable= + missing-module-docstring, + missing-function-docstring, + missing-class-docstring \ No newline at end of file diff --git a/main.py b/main.py index 2786d14..3f73d97 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,3 @@ -# pylint: disable=missing-module-docstring, missing-function-docstring, missing-class-docstring import asyncio import os from dotenv import load_dotenv