mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-10 21:40:11 +09:00
fixing embarrassing lint issues
This commit is contained in:
parent
f6abfd2627
commit
456987e022
@ -12,6 +12,7 @@ from ..utils import (
|
||||
str_or_none,
|
||||
try_get,
|
||||
sanitized_Request,
|
||||
ExtractorError,
|
||||
)
|
||||
import json
|
||||
import re
|
||||
@ -80,13 +81,13 @@ class PatreonIE(InfoExtractor):
|
||||
return
|
||||
|
||||
login_form = {
|
||||
'data' : {
|
||||
'type' : 'user',
|
||||
'attributes' : {
|
||||
'email' : username,
|
||||
'password' : password
|
||||
'data': {
|
||||
'type': 'user',
|
||||
'attributes': {
|
||||
'email': username,
|
||||
'password': password
|
||||
},
|
||||
'relationships' : {}
|
||||
'relationships': {}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user