Skip to content

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bswck committed Jan 9, 2024
1 parent 4c12a4e commit 717a695
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions redesc/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
import dataclasses
import datetime
import functools
import io
import itertools
import json
import logging
import operator
import pathlib
import re
import tempfile
import traceback
from typing import TYPE_CHECKING, Any

Expand Down Expand Up @@ -723,7 +721,8 @@ async def callback( # noqa: C901
diffs: list[VideoDiff] = []

for item in youtube_api.get_playlist_items(
playlist_id, limit=DEFAULT_LIMIT
playlist_id,
limit=DEFAULT_LIMIT,
):
snippet = item["snippet"]
video_id = snippet["resourceId"]["videoId"]
Expand Down

0 comments on commit 717a695

Please sign in to comment.