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

@@ -3,7 +3,6 @@
import logging
from abc import ABC, abstractmethod
from pathlib import Path
import requests
from praw.models import Submission
@@ -15,8 +14,7 @@ logger = logging.getLogger(__name__)
class BaseDownloader(ABC):
def __init__(self, directory: Path, post: Submission):
self.directory = directory
def __init__(self, post: Submission):
self.post = post
self.hashes = []