perf: fix perf::tags stable
authorPierre-Yves David <pierre-yves.david@octobus.net>
Thu, 22 Jun 2023 16:02:12 +0200
branchstable
changeset 50815 d2f72f702de2
parent 50814 4a3a9d961561
child 50816 787af4e0e8b7
perf: fix perf::tags That return is invalid and unnecessary.
contrib/perf.py
--- a/contrib/perf.py	Fri Jul 21 15:50:56 2023 +0200
+++ b/contrib/perf.py	Thu Jun 22 16:02:12 2023 +0200
@@ -902,7 +902,7 @@
         repocleartagscache()
 
     def t():
-        return len(repo.tags())
+        len(repo.tags())
 
     timer(t, setup=s)
     fm.end()