Skip to content

Commit 3d546e3

Browse files
committed
Try to fix the previous commit
1 parent 1276ebb commit 3d546e3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/automated-notebook-run-script.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ def run_notebook(driver, notebook_area, args):
125125
time.sleep(0.1)
126126
if not cell_is_waiting_for_input(driver):
127127
wait_for_idle_status(driver, current_cell, start_time, args.timeout)
128-
next_cell = current_cell.find_element(
129-
By.XPATH,
130-
"following-sibling::div[contains(@class,'jp-Notebook-cell')][1]",
131-
)
132-
current_cell = next_cell
128+
next_cell = current_cell.find_element(
129+
By.XPATH,
130+
"following-sibling::div[contains(@class,'jp-Notebook-cell')][1]",
131+
)
132+
current_cell = next_cell
133133

134134
def download_notebook(driver):
135135
"""This function is used to download the notebook currently open."""

0 commit comments

Comments
 (0)