Skip to content

Commit

Permalink
Remove (last?) set literal
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf authored Nov 23, 2024
1 parent 92d881c commit d4664a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion youtube_dl/extractor/nebula.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ def _extract_video_metadata(self, episode):
'series': 'channel_title',
'creator': 'channel_title',
'thumbnail': ('images', 'thumbnail', 'src', T(url_or_none)),
'episode_number': ('order', {int_or_none}),
'episode_number': ('order', T(int_or_none)),

# Old code was wrongly setting extractor_key from NebulaSubscriptionsIE
# '_old_archive_ids': ('zype_id', {lambda x: [
# make_archive_id(NebulaIE, x), make_archive_id(NebulaSubscriptionsIE, x)] if x else None}),
Expand Down

0 comments on commit d4664a5

Please sign in to comment.