From 8f404d9e4fc08a0bafaae7c49f695c34d5149597 Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Thu, 6 Jun 2024 20:59:18 +0800 Subject: [PATCH] fix: An implementation for an overloaded function is not allowed in a stub file Signed-off-by: Jack Cherng --- typings/sublime.pyi | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/typings/sublime.pyi b/typings/sublime.pyi index f257e04..7b5c36e 100644 --- a/typings/sublime.pyi +++ b/typings/sublime.pyi @@ -297,16 +297,6 @@ def open_dialog( directory: None | str = None, multi_select: bool = False, allow_folders: bool = False, -) -> None: - ... - - -def open_dialog( - callback: Callable[[None | str | Sequence[str]], None], - file_types: Sequence[Tuple[str, Sequence[str]]] = [], - directory: None | str = None, - multi_select: bool = False, - allow_folders: bool = False, ) -> None: """ Presents the user with a file dialog for the purpose of opening a file,