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