remove unused proxy settings

This commit is contained in:
dries.k
2022-07-29 17:37:38 +02:00
parent 4173ad2f84
commit 35f609329f
3 changed files with 9 additions and 13 deletions

View File

@@ -14,12 +14,6 @@ class Downloader(object):
def __init__(self):
self.cache = Cache()
self.session = requests.Session()
self.session.proxies.update(
{
"https": settings.value("proxies/https", type=str),
"http": settings.value("proxies/http", type=str),
}
)
def get(self, url: str) -> requests.Response:
"""