Skip to content

Commit 2cb3d97

Browse files
committed
test
1 parent 678c986 commit 2cb3d97

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scrape/casaevents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def get_casa_events():
1212

1313
items = soup.select_one("html > body > div:nth-of-type(3) > srcipt > div:nth-of-type(1) > div > div > div:nth-of-type(2) > div > div > div > div > div > div").find_all("div")
1414
for item in items:
15-
if len(item.find_all("div"))>1:
15+
if len(item.find_all("div")) > 1:
1616
link = item.find("a")['href']
1717
title = item.find_all("div")[0].text.strip()
1818
date = item.find_all("div")[1].text.strip()

scrape/eventsma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def get_event(data):
3030
results.append(send_event)
3131
return results
3232

33-
def get_events_ma():
3433

34+
def get_events_ma():
3535
results = []
3636
session = requests.Session()
3737
try:

0 commit comments

Comments
 (0)