From 4fa4bccabc2387f8211eb6d479b4a43f3810f1cc Mon Sep 17 00:00:00 2001 From: Audrey <45548254+tntmod54321@users.noreply.github.com> Date: Tue, 14 May 2024 16:05:25 -0400 Subject: [PATCH] fix linter errors --- yt_dlp/extractor/dailywire.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/yt_dlp/extractor/dailywire.py b/yt_dlp/extractor/dailywire.py index fd85737b33..53e9295451 100644 --- a/yt_dlp/extractor/dailywire.py +++ b/yt_dlp/extractor/dailywire.py @@ -1,9 +1,10 @@ import itertools import json + from .common import InfoExtractor from ..utils import ( - determine_ext, ExtractorError, + determine_ext, float_or_none, join_nonempty, parse_iso8601, @@ -56,8 +57,8 @@ def _call_api(self, slug, query, variables, message='Downloading JSON from Graph def _paginate(self, slug, query, where): for i in itertools.count(0): - page = self._call_api(slug, - query, {'where': where, 'first': 10, 'skip': i * 10}, + page = self._call_api( + slug, query, {'where': where, 'first': 10, 'skip': i * 10}, message=f'Downloading page {i + 1}') if not page: break