contrib/revsetbenchmarks.py
changeset 51690 493034cc3265
parent 48875 6000f5b25c9b
child 51700 7f0cb9ee0534
--- a/contrib/revsetbenchmarks.py	Thu Jul 18 12:03:29 2024 +0200
+++ b/contrib/revsetbenchmarks.py	Thu Jul 18 12:36:12 2024 +0200
@@ -191,7 +191,7 @@
 
 def formattiming(value):
     """format a value to strictly 8 char, dropping some precision if needed"""
-    if value < 10 ** 7:
+    if value < 10**7:
         return ('%.6f' % value)[:8]
     else:
         # value is HUGE very unlikely to happen (4+ month run)
@@ -371,7 +371,6 @@
 print()
 
 for ridx, rset in enumerate(revsets):
-
     print("revset #%i: %s" % (ridx, rset))
     printheader(variants, len(results), verbose=options.verbose, relative=True)
     ref = None