# HG changeset patch # User Matt Harbison # Date 1577472437 18000 # Node ID 943e34522b3793e6169bd831343ba2f0e40505ad # Parent 2bbb2f556ecfa37bfa668f03d3352f418c8e7080 perf: drop an unused variable assignment Caught by PyCharm. A different formatter is created below in `_displaystats()`. Differential Revision: https://phab.mercurial-scm.org/D7744 diff -r 2bbb2f556ecf -r 943e34522b37 contrib/perf.py --- a/contrib/perf.py Fri Dec 27 13:45:05 2019 -0500 +++ b/contrib/perf.py Fri Dec 27 13:47:17 2019 -0500 @@ -2220,9 +2220,6 @@ fm.end() if dostats: - # use a second formatter because the data are quite different, not sure - # how it flies with the templater. - fm = ui.formatter(b'perf', opts) entries = [ ('nbrevs', 'number of revision covered'), ('nbmissingfiles', 'number of missing files at head'),