Skip to content

Commit

Permalink
Fixed typo in Python performance benchmark script.
Browse files Browse the repository at this point in the history
  • Loading branch information
smuuf committed Dec 6, 2022
1 parent 864b821 commit 10d67b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bench/perf_bench_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def bench_dicts():
}

for name in dict_['keys']:
result.append(dict[name])
result.append(dict_[name])

c = c + 1
if c % tenth_iter == 0:
Expand Down

0 comments on commit 10d67b7

Please sign in to comment.