GenericBrowser has two parameters swapped around (#664)

This commit is contained in:
TrueBrain
2016-11-05 19:20:14 +01:00
committed by Guido van Rossum
parent cd1ef9149b
commit 3452ff5bbd

View File

@@ -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: ...