diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-07-10 10:12:34 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-07-10 10:22:55 -0400 |
commit | 7b2f6b8a8dca41bf0d0819a1e7aed8634deea070 (patch) | |
tree | 38aa02ff8933722254dbddbd02827d6339e34345 /cherrypy/test/benchmark.py | |
parent | 0d9a194f35382e824a1ac5ffc4fbcab646eb5d16 (diff) | |
download | cherrypy-git-7b2f6b8a8dca41bf0d0819a1e7aed8634deea070.tar.gz |
Remove unused variable and enumeration.
Diffstat (limited to 'cherrypy/test/benchmark.py')
-rw-r--r-- | cherrypy/test/benchmark.py | 2 |
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('') |