From 134882a17d538c05c125671074629f82e861672d Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Sat, 17 Jun 2023 13:45:22 -0700 Subject: [PATCH] [DOCS] Fix url + multi_url docs (#635) --- src/ytdl_sub/downloaders/url/validators.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/ytdl_sub/downloaders/url/validators.py b/src/ytdl_sub/downloaders/url/validators.py index 36e1fc36..52e5f367 100644 --- a/src/ytdl_sub/downloaders/url/validators.py +++ b/src/ytdl_sub/downloaders/url/validators.py @@ -75,9 +75,7 @@ class UrlValidator(StrictDictValidator): @property def url(self) -> OverridesStringFormatterValidator: """ - Required. URL to download from, listed in priority from lowest (top) to highest (bottom). - If a download exists in more than one URL, it will resolve to the bottom-most one and - inherit those variables. + Required. URL to download from. """ return self._url @@ -199,6 +197,10 @@ class MultiUrlValidator(OptionsValidator): def urls(self) -> UrlListValidator: """ Required. A list of :ref:`url` with the addition of the ``variables`` attribute. + Multiple URLs should be listed in the order of priority, with the lowest priority being the + top-most, and highest priority being the bottom-most. If a download exists in more than + one URL, it will resolve to the bottom-most one (the highest priority) and + inherit those variables. """ return self._urls