Skip to content

Commit

Permalink
removed unused package
Browse files Browse the repository at this point in the history
  • Loading branch information
msrezaie committed Dec 18, 2024
1 parent 6fca950 commit 68a85bc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions city_scrapers/spiders/atconj_Atlantic_City.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import json
from datetime import datetime
from urllib.parse import urljoin

Expand Down Expand Up @@ -81,7 +80,7 @@ def parse(self, response):
)

def parse_meeting(self, response, item):
meeting_detail = json.loads(response.text)
meeting_detail = response.json()

meeting = Meeting(
title=item["title"],
Expand Down

0 comments on commit 68a85bc

Please sign in to comment.