Skip to content

Commit 2cf0ba6

Browse files
committed
Update comments
1 parent 14d03e3 commit 2cf0ba6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2913,7 +2913,7 @@ def reload_page(self):
29132913

29142914
def type(self, selector, text, by=By.CSS_SELECTOR,
29152915
timeout=None, retry=False):
2916-
""" Same as update_text(). """
2916+
""" Same as update_text() """
29172917
if not timeout:
29182918
timeout = settings.LARGE_TIMEOUT
29192919
if self.timeout_multiplier and timeout == settings.LARGE_TIMEOUT:
@@ -2923,7 +2923,7 @@ def type(self, selector, text, by=By.CSS_SELECTOR,
29232923

29242924
def input(self, selector, text, by=By.CSS_SELECTOR,
29252925
timeout=None, retry=False):
2926-
""" Same as update_text(). """
2926+
""" Same as update_text() """
29272927
if not timeout:
29282928
timeout = settings.LARGE_TIMEOUT
29292929
if self.timeout_multiplier and timeout == settings.LARGE_TIMEOUT:
@@ -2933,7 +2933,7 @@ def input(self, selector, text, by=By.CSS_SELECTOR,
29332933

29342934
def write(self, selector, text, by=By.CSS_SELECTOR,
29352935
timeout=None, retry=False):
2936-
""" Same as update_text(). """
2936+
""" Same as update_text() """
29372937
if not timeout:
29382938
timeout = settings.LARGE_TIMEOUT
29392939
if self.timeout_multiplier and timeout == settings.LARGE_TIMEOUT:

0 commit comments

Comments
 (0)