From 86300cbe3f3833a274c5a818a88e47cfeddae598 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sat, 5 Nov 2016 16:15:16 +0100 Subject: [PATCH] GenericBrowser has two parameters swapped around --- stdlib/2and3/webbrowser.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/2and3/webbrowser.pyi b/stdlib/2and3/webbrowser.pyi index 95b340e2bc0b..93cbaca59cf2 100644 --- a/stdlib/2and3/webbrowser.pyi +++ b/stdlib/2and3/webbrowser.pyi @@ -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: ...