Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion isce2_topsapp/localize_slc_cdse.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,9 @@ def _attempt_download() -> str:
out_path.unlink(missing_ok=True)
# If 404 on /$zip, fall back to /$value (uncompressed, always available)
if e.response is not None and e.response.status_code == 404:
print(f"Compressed format not available, falling back to uncompressed...")
print(
"Compressed format not available, falling back to uncompressed..."
)
try:
return _do_download(download_url_value)
except requests.RequestException:
Expand Down