Skip to content

Commit dc53093

Browse files
committed
[py] fix flake8 failure
1 parent 3fcc413 commit dc53093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/remote/webdriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ def switch_to(self) -> SwitchTo:
633633
driver.switch_to.default_content()
634634
driver.switch_to.frame('frame_name')
635635
driver.switch_to.frame(1)
636-
driver.switch_to.frame(driver.find_elements(By.TAG_NAME,"iframe")[0])
636+
driver.switch_to.frame(driver.find_elements(By.TAG_NAME, "iframe")[0])
637637
driver.switch_to.parent_frame()
638638
driver.switch_to.window('main')
639639
"""

0 commit comments

Comments
 (0)