From f0a47e3ff281afe7d7b0758e43dfe9a8223ebbb4 Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Wed, 3 Apr 2024 02:25:53 -0700 Subject: [PATCH] gnulib-tool.py: Ignore pylint 'unidiomatic-typecheck' warnings. * pygnulib/.pylintrc: Disable warning C0123 since we don't mind using 'type() is' instead of 'isinstance'. --- ChangeLog | 6 ++++++ pygnulib/.pylintrc | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 799ee152e6..e7d3087f30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-04-03 Collin Funk + + gnulib-tool.py: Ignore pylint 'unidiomatic-typecheck' warnings. + * pygnulib/.pylintrc: Disable warning C0123 since we don't mind using + 'type() is' instead of 'isinstance'. + 2024-04-03 Collin Funk gnulib-tool.py: Don't ignore the argument to --doc-base. diff --git a/pygnulib/.pylintrc b/pygnulib/.pylintrc index 7c4c1a338c..15e2e8e800 100644 --- a/pygnulib/.pylintrc +++ b/pygnulib/.pylintrc @@ -1,7 +1,7 @@ # .pylintrc [MESSAGES CONTROL] -disable=C0103,C0114,C0121,C0209,C0301,C0302,R0902,R0912,R0913,R0914,R0915,R1705,R1702,R1720 +disable=C0103,C0114,C0121,C0123,C0209,C0301,C0302,R0902,R0912,R0913,R0914,R0915,R1705,R1702,R1720 # Local Variables: # mode: conf -- 2.39.5