We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c763f commit 27b38f4Copy full SHA for 27b38f4
src/scrape.py
@@ -2,7 +2,7 @@
2
from bs4 import BeautifulSoup
3
import json
4
import os
5
-from typing import Dict, Any
+from typing import Dict, Any # noqa
6
7
from helpers import send_request
8
from parse import parse_subject_page, parse_crn_page
@@ -11,7 +11,7 @@
11
12
def scrape(include_ratings: bool = False, all_colleges: bool = False):
13
session = Session()
14
- data = {} # type: Dict[str, Dict[str, Any]]
+ data = {} # type: Dict[str, Dict[str, Any]]
15
16
if not all_colleges:
17
college_codes = [config.college_code]
0 commit comments