From patchwork Sat Dec 28 03:04:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D7762: histedit: avoid using a list comprehension to fill a list with fixed values From: phabricator X-Patchwork-Id: 44107 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Sat, 28 Dec 2019 03:04:58 +0000 mharbison72 created this revision. Herald added a reviewer: durin42. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY Flagged by PyCharm as an unused assignment for the variable in the list. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D7762 AFFECTED FILES hgext/histedit.py CHANGE DETAILS To: mharbison72, durin42, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -308,7 +308,7 @@ if len(a.verbs): v = b', '.join(sorted(a.verbs, key=lambda v: len(v))) actions.append(b" %s = %s" % (v, lines[0])) - actions.extend([b' %s' for l in lines[1:]]) + actions.extend([b' %s'] * (len(lines) - 1)) for v in ( sorted(primaryactions)