Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
public-apis
Commits
48946082
Unverified
Commit
48946082
authored
Aug 24, 2021
by
Matheus Felipe
Browse files
Remove unnecessary verification
parent
f921f4ec
Changes
1
Show whitespace changes
Inline
Side-by-side
build/validate_links.py
View file @
48946082
...
...
@@ -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
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment