From 1a828d100093f51873212a1ec3c61be2a7a29010 Mon Sep 17 00:00:00 2001 From: h-takeyeah <61489178+h-takeyeah@users.noreply.github.com> Date: Fri, 24 Jul 2026 10:01:52 +0900 Subject: [PATCH] [yt-dlp] Fix signature of PostProcessor.to_screen --- stubs/yt-dlp/yt_dlp/postprocessor/common.pyi | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/stubs/yt-dlp/yt_dlp/postprocessor/common.pyi b/stubs/yt-dlp/yt_dlp/postprocessor/common.pyi index bb02ab145873..880fa48ecbba 100644 --- a/stubs/yt-dlp/yt_dlp/postprocessor/common.pyi +++ b/stubs/yt-dlp/yt_dlp/postprocessor/common.pyi @@ -16,14 +16,7 @@ class PostProcessor(metaclass=PostProcessorMetaClass): @classmethod def pp_key(cls) -> str: ... def to_screen( - self, - text: str, - prefix: bool = True, - *, - message: str, - skip_eol: bool = False, - quiet: bool | None = None, - only_once: bool = False, + self, text: str, prefix: bool = True, *, skip_eol: bool = False, quiet: bool | None = None, only_once: bool = False ) -> None: ... def report_warning(self, text: str, only_once: bool = False) -> None: ... def deprecation_warning(self, msg: str) -> None: ...