From 057acb02232c775ff06fb1c933ba31978b77658a Mon Sep 17 00:00:00 2001 From: Stepan Oksanichenko Date: Sat, 23 Mar 2024 02:48:02 +0200 Subject: [PATCH] - Pylint: disable too few public methods --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 0751812..81a29d4 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -21,4 +21,4 @@ jobs: pip install -r requirements/prod.txt - name: Analysing the code with pylint run: | - pylint $(git ls-files '*.py') + pylint $(git ls-files '*.py') --disable R0903