Skip to content

Commit

Permalink
missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlb committed Aug 12, 2024
1 parent 90d631b commit 3a53d71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ def save_channel_data(channel_ids: List[str], youtube: build):
channelPic=item["snippet"]["thumbnails"]["medium"]["url"].split("=")[
0
], # Can set ?s= on the end to get a custom resolution
channelPicH=item["snippet"]["thumbnails"]["medium"]["height"]
channelPicW=item["snippet"]["thumbnails"]["medium"]["width"]
channelPicH=item["snippet"]["thumbnails"]["medium"]["height"],
channelPicW=item["snippet"]["thumbnails"]["medium"]["width"],
channelSubCount=int(item["statistics"]["subscriberCount"]),
)
channels.append(youtube_channel)
Expand Down

0 comments on commit 3a53d71

Please sign in to comment.