Skip to content

Commit 2cf747c

Browse files
authored
[yt-dlp] Fix signature of PostProcessor.to_screen (#16084)
1 parent 97e83f6 commit 2cf747c

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

stubs/yt-dlp/yt_dlp/postprocessor/common.pyi

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,7 @@ class PostProcessor(metaclass=PostProcessorMetaClass):
1616
@classmethod
1717
def pp_key(cls) -> str: ...
1818
def to_screen(
19-
self,
20-
text: str,
21-
prefix: bool = True,
22-
*,
23-
message: str,
24-
skip_eol: bool = False,
25-
quiet: bool | None = None,
26-
only_once: bool = False,
19+
self, text: str, prefix: bool = True, *, skip_eol: bool = False, quiet: bool | None = None, only_once: bool = False
2720
) -> None: ...
2821
def report_warning(self, text: str, only_once: bool = False) -> None: ...
2922
def deprecation_warning(self, msg: str) -> None: ...

0 commit comments

Comments
 (0)