From 2e52e595bc1561ea320d1ac30fabb25fdaab0c50 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Thu, 10 Nov 2022 22:10:14 -0800 Subject: [PATCH] lint --- src/ytdl_sub/downloaders/generic/validators.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ytdl_sub/downloaders/generic/validators.py b/src/ytdl_sub/downloaders/generic/validators.py index 0b345f2f..62274263 100644 --- a/src/ytdl_sub/downloaders/generic/validators.py +++ b/src/ytdl_sub/downloaders/generic/validators.py @@ -71,9 +71,9 @@ 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, 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. """ return self._url @@ -182,9 +182,9 @@ class MultiUrlValidator(StrictDictValidator, AddsVariablesMixin): @property def variables(self) -> DictFormatterValidator: """ - Optional. Source variables to add to each entry downloaded from its respective :ref:`url`. The top-most - :ref:`url` must define all possible variables. Other :ref:`url` entries can redefine all of them or a subset of - the top-most variables. + Optional. Source variables to add to each entry downloaded from its respective :ref:`url`. + The top-most :ref:`url` must define all possible variables. Other :ref:`url` entries can + redefine all of them or a subset of the top-most variables. """ # keep for readthedocs documentation return self._urls.list[0].variables