Skip to content

Commit 1f5a500

Browse files
KazuCocoaCopilot
andauthored
Apply suggestion from @Copilot
Co-authored-by: Copilot <[email protected]>
1 parent 739e52b commit 1f5a500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appium/webdriver/webelement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class WebElement(SeleniumWebElement):
3131
def find_element(self, by: str, value: Union[str, Dict, None] = None) -> Self: # type: ignore[override]
3232
...
3333

34-
def find_elements(self, by: str, value: Union[str, Dict, None] = None) -> Self: # type: ignore[override]
34+
def find_elements(self, by: str, value: Union[str, Dict, None] = None) -> List[Self]: # type: ignore[override]
3535
...
3636

3737
def get_attribute(self, name: str) -> Optional[Union[str, Dict]]: # type: ignore[override]

0 commit comments

Comments
 (0)