Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev committed Mar 4, 2024
1 parent 03b9116 commit 0ac7133
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions md_dead_link_check/link_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ def check_path_links(md_data: Dict[str, MarkdownInfo], root_dir: Path, config: C
continue
md_abs_path = root_dir / md_file_info.path
for md_link in md_file_info.links:
for p in config.exclude_links:
print(fnmatch(md_link.link, p), md_link.link, p)
if any(fnmatch(md_link.link, p) for p in config.exclude_links):
continue
split_result = urlsplit(md_link.link)
Expand Down

0 comments on commit 0ac7133

Please sign in to comment.