mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-22 03:41:28 +08:00
Fixing flake8 E251 errors
This commit is contained in:
@@ -38,7 +38,7 @@ class WebElement:
|
||||
def find_element_by_css_selector(self, css_selector: basestring) -> WebElement: ...
|
||||
def find_elements_by_css_selector(self, css_selector: basestring) -> List[WebElement]: ...
|
||||
|
||||
def send_keys(self, *value: *basestring) -> None: ...
|
||||
def send_keys(self, *value: basestring) -> None: ...
|
||||
def is_displayed(self) -> bool: ...
|
||||
@property
|
||||
def location_once_scrolled_into_view(self): ...
|
||||
|
||||
2
third_party/3.6/click/formatting.pyi
vendored
2
third_party/3.6/click/formatting.pyi
vendored
@@ -20,7 +20,7 @@ def wrap_text(
|
||||
width: int = 78,
|
||||
initial_indent: str = '',
|
||||
subsequent_indent: str = '',
|
||||
preserve_paragraphs = False
|
||||
preserve_paragraphs: bool = False
|
||||
) -> str:
|
||||
...
|
||||
|
||||
|
||||
2
third_party/3.6/click/types.pyi
vendored
2
third_party/3.6/click/types.pyi
vendored
@@ -34,7 +34,7 @@ class ParamType:
|
||||
def split_envvar_value(self, rv: str) -> List[str]:
|
||||
...
|
||||
|
||||
def fail(self, message: str, param = None, ctx: Context = None) -> None:
|
||||
def fail(self, message: str, param: Parameter = None, ctx: Context = None) -> None:
|
||||
...
|
||||
|
||||
|
||||
|
||||
2
third_party/3/dateutil/parser.pyi
vendored
2
third_party/3/dateutil/parser.pyi
vendored
@@ -35,7 +35,7 @@ class parser(object):
|
||||
timestr: Union[str, bytes, IO[Any]],
|
||||
default: Optional[datetime],
|
||||
ignoretz: bool=...,
|
||||
tzinfos =...,
|
||||
tzinfos: Any =...,
|
||||
) -> datetime: ...
|
||||
|
||||
DEFAULTPARSER = ... # type: parser
|
||||
|
||||
Reference in New Issue
Block a user