1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2026-01-25 08:11:41 +00:00

[cleanup, utils] Don't use kwargs for format_field

This commit is contained in:
pukkandan
2022-06-18 07:30:12 +05:30
parent e121e3cee7
commit a70635b8a1
25 changed files with 32 additions and 32 deletions

View File

@@ -429,7 +429,7 @@ class PornHubIE(PornHubBaseIE):
default=None))
formats.append({
'url': format_url,
'format_id': format_field(height, template='%dp'),
'format_id': format_field(height, None, '%dp'),
'height': height,
})