# HG changeset patch # User Matt Harbison # Date 1577487497 18000 # Node ID cd96eccd1ce19e51ba90297758d9a4833125d9c8 # Parent 3622f4fafd3536b29772075d2d428289d3c8ff11 annotate: avoid using a list comprehension to fill a list with fixed values Flagged by PyCharm as an unused assignment for the variable in the list. Differential Revision: https://phab.mercurial-scm.org/D7753 diff -r 3622f4fafd35 -r cd96eccd1ce1 mercurial/commands.py --- a/mercurial/commands.py Fri Dec 27 17:54:45 2019 -0500 +++ b/mercurial/commands.py Fri Dec 27 17:58:17 2019 -0500 @@ -559,7 +559,7 @@ ml = max(sizes) formats.append([sep + b' ' * (ml - w) + b'%s' for w in sizes]) else: - formats.append([b'%s' for x in l]) + formats.append([b'%s'] * len(l)) pieces.append(l) for f, p, n in zip(zip(*formats), zip(*pieces), lines):