Skip to content

Commit

Permalink
Hopefully pipeline passes so I can test this
Browse files Browse the repository at this point in the history
  • Loading branch information
greenw0lf committed Sep 25, 2024
1 parent 66e10f0 commit d894219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def download_uri(uri: str) -> Optional[DownloadResult]:
return http_download(uri)


def http_download(url: str) -> DownloadResult:
def http_download(url: str) -> Optional[DownloadResult]:
logger.info(f"Checking if {url} was already downloaded")
fn = os.path.basename(urlparse(url).path)
input_file = os.path.join(input_file_dir, fn)
Expand Down

0 comments on commit d894219

Please sign in to comment.