flake8 style

This commit is contained in:
Itamar Friedman
2023-04-13 00:06:23 +03:00
parent bf3c76ced7
commit 3e53e976a5
2 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ def get_response(url, headers=cfg.user_agent_header, timeout=10):
# Restrict access to local files # Restrict access to local files
if check_local_file_access(url): if check_local_file_access(url):
raise ValueError('Access to local files is restricted') raise ValueError('Access to local files is restricted')
# Most basic check if the URL is valid: # Most basic check if the URL is valid:
if not url.startswith('http://') and not url.startswith('https://'): if not url.startswith('http://') and not url.startswith('https://'):
raise ValueError('Invalid URL format') raise ValueError('Invalid URL format')
@@ -44,7 +44,7 @@ def get_response(url, headers=cfg.user_agent_header, timeout=10):
# Check if the response contains an HTTP error # Check if the response contains an HTTP error
if response.status_code >= 400: if response.status_code >= 400:
return None, "Error: HTTP " + str(response.status_code) + " error" return None, "Error: HTTP " + str(response.status_code) + " error"
return response, None return response, None
except ValueError as ve: except ValueError as ve:
# Handle invalid URL format # Handle invalid URL format

View File

@@ -48,7 +48,7 @@ class TestScrapeLinks:
assert len(result) > 0 assert len(result) > 0
assert isinstance(result, list) assert isinstance(result, list)
assert isinstance(result[0], str) assert isinstance(result[0], str)
# Tests that the function returns correctly formatted hyperlinks when given a valid url. # Tests that the function returns correctly formatted hyperlinks when given a valid url.
def test_valid_url(self, mocker): def test_valid_url(self, mocker):
# Mock the requests.get() function to return a response with sample HTML containing hyperlinks # Mock the requests.get() function to return a response with sample HTML containing hyperlinks
@@ -90,7 +90,7 @@ class TestScrapeLinks:
# Assert that the function returns an empty list # Assert that the function returns an empty list
assert result == [] assert result == []
# Tests that scrape_links() correctly extracts and formats hyperlinks from # Tests that scrape_links() correctly extracts and formats hyperlinks from
# a sample HTML containing a few hyperlinks. # a sample HTML containing a few hyperlinks.
def test_scrape_links_with_few_hyperlinks(self, mocker): def test_scrape_links_with_few_hyperlinks(self, mocker):
# Mock the requests.get() function to return a response with a sample HTML containing hyperlinks # Mock the requests.get() function to return a response with a sample HTML containing hyperlinks