Skip to content

Commit b598ef3

Browse files
committed
Fix: another whitespace...
1 parent 106a7a1 commit b598ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-scraping-bs4/scrape_jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# Look for Python jobs
1313
python_jobs = results.find_all('h2',
14-
string=lambda t: "python" in t.lower())
14+
string=lambda t: "python" in t.lower())
1515
for p_job in python_jobs:
1616
link = p_job.find('a')['href']
1717
print(p_job.text.strip())

0 commit comments

Comments
 (0)