Browse Source

Remove unnecessary verification

pull/1985/head
Matheus Felipe 2 years ago
parent
commit
48946082ba
No known key found for this signature in database GPG Key ID: AA785C523274872F
1 changed files with 0 additions and 9 deletions
  1. +0
    -9
      build/validate_links.py

+ 0
- 9
build/validate_links.py View File

@@ -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:


Loading…
Cancel
Save