Remove unused variables

This commit is contained in:
blank X 2021-07-21 14:40:01 +07:00
parent d87d05b7d1
commit cf616b1d09
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 0 additions and 3 deletions

View File

@ -3,9 +3,6 @@ from datetime import datetime
from xml.etree import ElementTree
from bs4 import BeautifulSoup
daydict = {1: 'Mon', 2: 'Tue', 3: 'Wed', 4: 'Thu', 5: 'Fri', 6: 'Sat', 7: 'Sun'}
monthdict = {1: 'Jan', 2: 'Feb', 3: 'Mar', 4: 'Apr', 5: 'May', 6: 'Jun', 7: 'Jul', 8: 'Aug', 9: 'Sep', 10: 'Oct', 11: 'Nov', 12: 'Dec'}
with open('index.html') as file:
soup = BeautifulSoup(file.read())
sbbsbase = soup.find('link', rel='canonical')['href']