1
0

style: Format list comprehension for better readability in youtube.py

This commit is contained in:
Jon Michael Aanes (aider) 2025-03-15 21:54:20 +01:00
parent 2a4aec9d33
commit a0e8d1ec28

View File

@ -37,8 +37,17 @@ class YoutubeFavoritesScraper(Scraper):
def to_csv(self, videos: list[dict]) -> str: def to_csv(self, videos: list[dict]) -> str:
"""Convert the list of videos to CSV format.""" """Convert the list of videos to CSV format."""
headers = ['id', 'title', 'url', 'upload_date'] headers = ['id', 'title', 'url', 'upload_date']
rows = [headers] + [[video.get('id'), video.get('title'), video.get('url'), video.get('upload_date')] for video in videos] rows = [headers] + [
[
video.get('id'),
video.get('title'),
video.get('url'),
video.get('upload_date'),
]
for video in videos
]
from io import StringIO from io import StringIO
sio = StringIO() sio = StringIO()
csv.writer(sio).writerows(rows) csv.writer(sio).writerows(rows)
return sio.getvalue() return sio.getvalue()