From 802509cb11bb5a2123fd6c39abf5fe746e85036d Mon Sep 17 00:00:00 2001 From: Yilei Yang Date: Mon, 22 Jan 2024 09:34:33 -0800 Subject: [PATCH] Fix this func signature, it shouldn't contain a bare `*` at the end. Related: #266 PiperOrigin-RevId: 600482233 --- absl/app.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/absl/app.pyi b/absl/app.pyi index fe5e4480..7033229a 100644 --- a/absl/app.pyi +++ b/absl/app.pyi @@ -84,7 +84,6 @@ def call_after_init(callback: Callable[[], Any]) -> None: def run( main: Callable[[List[Text]], Any], argv: Optional[List[Text]] = ..., - *, ) -> NoReturn: ...