Commit 2b92a33a by Bjorn Neergaard

chore: clean up unused imports

parent cbbd92ce
...@@ -15,8 +15,8 @@ from typing import List ...@@ -15,8 +15,8 @@ from typing import List
from typing import Optional from typing import Optional
from urllib.parse import quote from urllib.parse import quote
import requests
import requests.auth import requests.auth
import requests.exceptions
from cachecontrol import CacheControl from cachecontrol import CacheControl
from cachecontrol.caches.file_cache import FileCache from cachecontrol.caches.file_cache import FileCache
...@@ -418,7 +418,7 @@ class LegacyRepository(PyPiRepository): ...@@ -418,7 +418,7 @@ class LegacyRepository(PyPiRepository):
if response.status_code == 404: if response.status_code == 404:
return None return None
response.raise_for_status() response.raise_for_status()
except requests.HTTPError as e: except requests.exceptions.HTTPError as e:
raise RepositoryError(e) raise RepositoryError(e)
if response.url != url: if response.url != url:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment