Skip to content

Commit 78ba515

Browse files
committed
formatting
1 parent eee01bb commit 78ba515

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/test_links.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ def _parse_links(filename):
1818
soup = BeautifulSoup(markdown.markdown(text), "lxml")
1919
return [link['href'] for link in soup.find_all('a', href=True)]
2020

21-
22-
2321
def _valid(link):
2422
if '.md' in link:
2523
return False
@@ -29,7 +27,6 @@ def _valid(link):
2927
return False
3028
return True
3129

32-
3330
def _get_links_from_page(filename):
3431
links = []
3532
for link in _parse_links(filename):

0 commit comments

Comments
 (0)