From 456987e0229b64d24d9dc1f113bf856ac855de37 Mon Sep 17 00:00:00 2001 From: Chris Putnam Date: Fri, 22 Jan 2021 01:15:51 -0600 Subject: [PATCH] fixing embarrassing lint issues --- youtube_dl/extractor/patreon.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/youtube_dl/extractor/patreon.py b/youtube_dl/extractor/patreon.py index 6e9a73ca2..50a8f10c0 100644 --- a/youtube_dl/extractor/patreon.py +++ b/youtube_dl/extractor/patreon.py @@ -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': {} } }