From b41ca5909ffe95d49f00a654d0fbb6dea2092340 Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Wed, 17 Apr 2024 16:20:32 -0700 Subject: [PATCH] gnulib-tool.py: Ignore 'attribute-defined-outside-init' warnings. * pygnulib/.pylintrc: Add W0201 to the disabled warnings. See discussion here: --- ChangeLog | 7 +++++++ pygnulib/.pylintrc | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 646653ffe5..d40063de73 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2024-04-17 Collin Funk + + gnulib-tool.py: Ignore 'attribute-defined-outside-init' warnings. + * pygnulib/.pylintrc: Add W0201 to the disabled warnings. + See discussion here: + + 2024-04-17 Bruno Haible gnulib-tool.py: Use same warning style as gnulib-tool.sh. diff --git a/pygnulib/.pylintrc b/pygnulib/.pylintrc index 102accb37d..59fc986f13 100644 --- a/pygnulib/.pylintrc +++ b/pygnulib/.pylintrc @@ -1,7 +1,7 @@ # .pylintrc [MESSAGES CONTROL] -disable=C0103,C0114,C0121,C0123,C0209,C0301,C0302,R0902,R0912,R0913,R0914,R0915,R1705,R1702,R1720,R1735 +disable=C0103,C0114,C0121,C0123,C0209,C0301,C0302,R0902,R0912,R0913,R0914,R0915,R1705,R1702,R1720,R1735,W0201 # Local Variables: # mode: conf -- 2.44.0