Remove unused parameter

This commit is contained in:
Serene-Arc
2021-02-15 15:12:27 +10:00
committed by Ali Parlakci
parent f71a3c5326
commit 714b6c5b72
13 changed files with 28 additions and 39 deletions

View File

@@ -2,7 +2,6 @@
import json
import logging
import pathlib
import requests
from praw.models import Submission
@@ -14,8 +13,8 @@ logger = logging.getLogger(__name__)
class Gallery(BaseDownloader):
def __init__(self, directory: pathlib.Path, post: Submission):
super().__init__(directory, post)
def __init__(self, post: Submission):
super().__init__(post)
link = self.post.url
self.raw_data = self._get_data(link)
@@ -39,7 +38,8 @@ class Gallery(BaseDownloader):
@staticmethod
def _get_data(link: str) -> dict:
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)"
" Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
}
res = requests.get(link, headers=headers)