From e77618c1cb9e7449dbe359529444e8837fe4ce51 Mon Sep 17 00:00:00 2001 From: cosven Date: Mon, 23 Sep 2024 19:13:29 +0800 Subject: [PATCH] fix pylint for py3.8 --- .pylintrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pylintrc b/.pylintrc index c3c8485dd1..2b85be52c1 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,5 +1,7 @@ [MASTER] disable= + unknown-option-value, # some options are only valid in latest pylint + missing-docstring, too-few-public-methods, no-name-in-module, # seems not working for PyQt5