<lucie> smh not even trailing comma smh

Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/chen/trunk@25 32723744-9b23-0b4a-b1da-9b2e968f9461
This commit is contained in:
yakumo.izuru 2023-10-28 17:09:49 +00:00
parent 476d05a17d
commit 8f731339cf

14
main.py
View File

@ -24,7 +24,6 @@ headers = {
"Accept-Language": accept_lang,
"Cache-Control": "no-cache",
}
block_list = (
"localhost",
"127.0.0.1",
@ -32,11 +31,16 @@ block_list = (
"youtu.be",
"www.youtube.com",
"youtube.com",
"m.youtube.com"
"m.youtube.com",
)
req_list = (
"http://",
"https://"
)
html_files = (
"text/html",
"application/xhtml+xml"
)
req_list = ("http://", "https://")
html_files = ("text/html", "application/xhtml+xml")
class Lifo(list):
"""