Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-Jess committed Aug 30, 2024
1 parent cb9bf1b commit b0dbd2e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def handle(self, *args, **kwargs):

def scrape_details(self, event_url):
try:
resp = requests.get(event_url)
resp = requests.get(event_url, verify=False)
except ConnectionError:
print("Error:", ConnectionError)
return None
Expand Down Expand Up @@ -86,7 +86,7 @@ def scrape_details(self, event_url):

def scrape_calendar_page(self, calendar_url, event_type):
try:
resp = requests.get(calendar_url)
resp = requests.get(calendar_url, verify=False)
except ConnectionError:
print("Error:", ConnectionError)
return
Expand Down

0 comments on commit b0dbd2e

Please sign in to comment.