Skip to content

Commit

Permalink
Remove defunct err
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanconn committed Sep 26, 2024
1 parent 6685c4a commit f3ea393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mica/vv/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def get_arch_vv(obsid, version="last"):
obspar_file = glob(
os.path.join(obspar_dirs[asp_proc["obspar_version"]], "axaf*par*")
)[0]
except IndexError as err:
except IndexError:
raise LookupError(f"Requested version {version} not in obspar archive") from None
return Obi(obspar_file, l1_dir, temproot=FILES["temp_root"])

Expand Down

0 comments on commit f3ea393

Please sign in to comment.