Skip to content

Commit 9493830

Browse files
Ravencentricdanhje
authored andcommitted
fix: bad replace
1 parent cb96e1b commit 9493830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323

2424
results = {}
25-
for name in DATA:
25+
for name, xml in DATA.items(): # noqa: B007, PERF102
2626
print(f"Running benchmarks for {name}...")
2727
quick_time = timeit.timeit("quickparse(xml)", globals=globals(), number=3)
2828
py_time = timeit.timeit("pyparse(xml)", globals=globals(), number=3)

0 commit comments

Comments
 (0)