From f55cacb2e39c4ae212588342312df076accfd8e6 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 17 Jul 2024 01:26:17 +0200 Subject: [PATCH] [chore] Added missing parameter to docstring. --- platypush/plugins/media/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platypush/plugins/media/__init__.py b/platypush/plugins/media/__init__.py index 9c9ad12086..a8f3db5b73 100644 --- a/platypush/plugins/media/__init__.py +++ b/platypush/plugins/media/__init__.py @@ -791,6 +791,8 @@ class MediaPlugin(RunnablePlugin, ABC): :param timeout: Network timeout in seconds (default: 10). :param sync: If set to True, the download will be synchronous and the action will return only when the download is completed. + :param only_audio: If set to True, only the audio track will be downloaded + (only supported for yt-dlp-compatible URLs for now). :param youtube_format: Override the default ``youtube_format`` setting. :return: The absolute path to the downloaded file. """