From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E1C90138359 for ; Mon, 3 Aug 2020 21:42:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E4F9E0C08; Mon, 3 Aug 2020 21:42:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88300E0C08 for ; Mon, 3 Aug 2020 21:42:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB00834F1EF for ; Mon, 3 Aug 2020 21:42:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FF05318 for ; Mon, 3 Aug 2020 21:42:11 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1596489954.a8eb52efa1364044bb8dd426b1691ef19f08f595.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: pylintrc X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: a8eb52efa1364044bb8dd426b1691ef19f08f595 X-VCS-Branch: master Date: Mon, 3 Aug 2020 21:42:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2218a1d-a0db-4ae1-bf02-26a77c55b255 X-Archives-Hash: 4ac966a4692eb076c037ad150478c6a1 commit: a8eb52efa1364044bb8dd426b1691ef19f08f595 Author: Aaron Bauman gentoo org> AuthorDate: Mon Aug 3 20:20:33 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Aug 3 21:25:54 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a8eb52ef pylintrc: enable unused-imports * Repo is now clear of unused-imports... so turn it on by default Signed-off-by: Aaron Bauman gentoo.org> Signed-off-by: Zac Medico gentoo.org> pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 19f59c165..6f0eef386 100644 --- a/pylintrc +++ b/pylintrc @@ -12,7 +12,7 @@ # --disable=W". #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module disable=all -enable=redefined-builtin,useless-object-inheritance,trailing-newlines +enable=redefined-builtin,useless-object-inheritance,trailing-newlines,unused-import # A comma-separated list of package or module names from where C extensions may # be loaded. Extensions are loading into the active Python interpreter and may