Skip to content

Commit

Permalink
fix: remove class type filter in sfu scraper
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiin Kim authored and Jiin Kim committed Jan 12, 2025
1 parent 0beab15 commit 7fa5b02
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/agents/scrapers/simon_fraser_university.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,6 @@ async def fetch_courses(self) -> CourseListingModel:
continue

for section in sections:
if section.get('classType') != 'e':
continue

detail_url = f"{self.base_url}?{year}/{term}/{dept['value']}/{course['value']}/{section['value']}"
detail = await self._fetch_json(detail_url)

Expand Down

0 comments on commit 7fa5b02

Please sign in to comment.