annotate: avoid using a list comprehension to fill a list with fixed values
authorMatt Harbison <matt_harbison@yahoo.com>
Fri, 27 Dec 2019 17:58:17 -0500
changeset 43985 cd96eccd1ce1
parent 43984 3622f4fafd35
child 43986 71582c5ad00f
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
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):