Unverified Commit 48946082 authored by Matheus Felipe's avatar Matheus Felipe
Browse files

Remove unnecessary verification

parent f921f4ec
......@@ -5,12 +5,6 @@ import re
import socket
import sys
ignored_links = [
'https://github.com/public-apis/public-apis/actions?query=workflow%3A%22Run+tests%22',
'https://github.com/public-apis/public-apis/workflows/Validate%20links/badge.svg?branch=master',
'https://github.com/public-apis/public-apis/actions?query=workflow%3A%22Validate+links%22',
'https://github.com/davemachado/public-api',
]
def parse_links(filename):
"""Returns a list of URLs from text file"""
......@@ -37,9 +31,6 @@ def dup_links(links):
dupes = []
for link in links:
if link in ignored_links:
continue
if link not in seen:
seen[link] = 1
else:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment