Skip to content

Commit 27b38f4

Browse files
committed
fixed linter error
1 parent f1c763f commit 27b38f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scrape.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from bs4 import BeautifulSoup
33
import json
44
import os
5-
from typing import Dict, Any
5+
from typing import Dict, Any # noqa
66

77
from helpers import send_request
88
from parse import parse_subject_page, parse_crn_page
@@ -11,7 +11,7 @@
1111

1212
def scrape(include_ratings: bool = False, all_colleges: bool = False):
1313
session = Session()
14-
data = {} # type: Dict[str, Dict[str, Any]]
14+
data = {} # type: Dict[str, Dict[str, Any]]
1515

1616
if not all_colleges:
1717
college_codes = [config.college_code]

0 commit comments

Comments
 (0)