删除eles返回类型注解使IDE能正确提示

This commit is contained in:
g1879 2020-08-12 17:18:54 +08:00
parent a8d4d3fb5d
commit ba2223e691
2 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@ class DriverElement(DrissionElement):
def eles(self,
loc_or_str: Union[tuple, str],
timeout: float = None,
show_errmsg: bool = False) -> list:
show_errmsg: bool = False):
"""返回当前元素下级所有符合条件的子元素 \n
示例 \n
- 用loc元组查找 \n

View File

@ -157,7 +157,7 @@ class SessionElement(DrissionElement):
return execute_session_find(self.inner_ele, loc_or_str, mode, show_errmsg)
def eles(self, loc_or_str: Union[tuple, str], show_errmsg: bool = False) -> list:
def eles(self, loc_or_str: Union[tuple, str], show_errmsg: bool = False):
"""返回当前元素下级所有符合条件的子元素 \n
示例 \n
- 用loc元组查找 \n