Skip to content

Commit 9c95709

Browse files
wolfieschclaude
andcommitted
fix(lint): resolve mypy no-redef errors in perf runner
Remove duplicate type annotations on values/row_vals variables that were redefined in a later code block within the same function. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d6764c1 commit 9c95709

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/excelbench/perf/runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -947,10 +947,10 @@ def _run_workload_write(
947947
step = int(workload.get("step") or 1)
948948

949949
# Build value grid.
950-
values: list[list[Any]] = []
950+
values = []
951951
v = start
952952
for _r in range(rows):
953-
row_vals: list[Any] = []
953+
row_vals = []
954954
for _c in range(cols):
955955
row_vals.append(v)
956956
v += step

0 commit comments

Comments
 (0)