mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-22 20:01:29 +08:00
GenericBrowser has two parameters swapped around (#664)
This commit is contained in:
committed by
Guido van Rossum
parent
cd1ef9149b
commit
3452ff5bbd
@@ -23,8 +23,8 @@ class BaseBrowser:
|
||||
def open_new_tab(self, url: str) -> bool: ...
|
||||
|
||||
class GenericBrowser(BaseBrowser):
|
||||
name = ... # type: List[str]
|
||||
args = ... # type: str
|
||||
args = ... # type: List[str]
|
||||
name = ... # type: str
|
||||
basename = ... # type: str
|
||||
def __init__(self, name: str) -> None: ...
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user