Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Sun, 05 Jun 2022 16:21:15
Message-Id: 1654385402.29e2f510dd9232bc4d080ae21f5b140151bda38e.floppym@gentoo
1 commit: 29e2f510dd9232bc4d080ae21f5b140151bda38e
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 23:27:44 2022 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 23:30:02 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=29e2f510
7
8 pylintrc: disable cyclic-import check
9
10 We have cyclic imports in Portage; pylint before 2.14.0 fails to find them.
11
12 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
13
14 pylintrc | 1 -
15 1 file changed, 1 deletion(-)
16
17 diff --git a/pylintrc b/pylintrc
18 index ce5dec11b..398c04475 100644
19 --- a/pylintrc
20 +++ b/pylintrc
21 @@ -13,7 +13,6 @@
22 #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module
23 disable=all
24 enable=
25 - cyclic-import,
26 import-error,
27 import-self,
28 misplaced-future,