summaryrefslogtreecommitdiff
path: root/cherrypy/test/benchmark.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-07-10 10:12:34 -0400
committerJason R. Coombs <jaraco@jaraco.com>2017-07-10 10:22:55 -0400
commit7b2f6b8a8dca41bf0d0819a1e7aed8634deea070 (patch)
tree38aa02ff8933722254dbddbd02827d6339e34345 /cherrypy/test/benchmark.py
parent0d9a194f35382e824a1ac5ffc4fbcab646eb5d16 (diff)
downloadcherrypy-git-7b2f6b8a8dca41bf0d0819a1e7aed8634deea070.tar.gz
Remove unused variable and enumeration.
Diffstat (limited to 'cherrypy/test/benchmark.py')
-rw-r--r--cherrypy/test/benchmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/test/benchmark.py b/cherrypy/test/benchmark.py
index 7727b1d0..2d306003 100644
--- a/cherrypy/test/benchmark.py
+++ b/cherrypy/test/benchmark.py
@@ -281,7 +281,7 @@ def size_report(sizes=(10, 100, 1000, 10000, 100000, 100000000),
def print_report(rows):
for row in rows:
print('')
- for i, val in enumerate(row):
+ for val in row:
sys.stdout.write(str(val).rjust(10) + ' | ')
print('')