Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
patnr committed Feb 19, 2024
1 parent fd0f381 commit 54f69e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def _link_is_down(link):
link, method="HEAD", headers={'User-Agent': 'Mozilla'})
response = urllib.request.urlopen(request, timeout=2)
assert response.status == 200
except Exception as e:
except Exception as _:
return True


Expand Down Expand Up @@ -108,7 +108,7 @@ def assert_show_answer(lines, fname):
print(f"`show_answer` uncommented on line {i}")
failed |= True
if not found_import:
print(f"`import show_answer` not found.")
print("`import show_answer` not found.")
failed = True
return failed

Expand Down

0 comments on commit 54f69e2

Please sign in to comment.