Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Mon, 03 Aug 2020 21:42:19
Message-Id: 1596489954.a8eb52efa1364044bb8dd426b1691ef19f08f595.zmedico@gentoo
1 commit: a8eb52efa1364044bb8dd426b1691ef19f08f595
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 20:20:33 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 21:25:54 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a8eb52ef
7
8 pylintrc: enable unused-imports
9
10 * Repo is now clear of unused-imports... so turn it on by default
11
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
14
15 pylintrc | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/pylintrc b/pylintrc
19 index 19f59c165..6f0eef386 100644
20 --- a/pylintrc
21 +++ b/pylintrc
22 @@ -12,7 +12,7 @@
23 # --disable=W".
24 #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module
25 disable=all
26 -enable=redefined-builtin,useless-object-inheritance,trailing-newlines
27 +enable=redefined-builtin,useless-object-inheritance,trailing-newlines,unused-import
28
29 # A comma-separated list of package or module names from where C extensions may
30 # be loaded. Extensions are loading into the active Python interpreter and may