Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jake authored and jake committed Mar 19, 2024
1 parent 5b958e5 commit 0bb8eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internetarchive/cli/ia_reviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def main(argv, session: ArchiveSession) -> None:
print(r.text)
sys.exit(0)
except HTTPError as exc:
if exc.response.status_code == 404:
if exc.response.status_code == 404: # type: ignore
sys.exit(0)
else:
raise exc
Expand Down

0 comments on commit 0bb8eb8

Please sign in to comment.