Skip to content

Commit 9276ebb

Browse files
committed
test(builder): Remove unused loop variable
1 parent e724778 commit 9276ebb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/workspace/test_builder.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,8 @@ def test_window_options(
301301
window_count = len(session.windows) # current window count
302302
assert len(session.windows) == window_count
303303
for w, wconf in builder.iter_create_windows(session):
304-
for p in builder.iter_create_panes(w, wconf):
304+
for _ in builder.iter_create_panes(w, wconf):
305305
w.select_layout("tiled") # fix glitch with pane size
306-
p = p
307306
assert len(session.windows) == window_count
308307
assert isinstance(w, Window)
309308
assert w._show_option("main-pane-height") == 5

0 commit comments

Comments
 (0)