Update Typo in code snippet

Added missing : in function declaration.
pull/1079/head
Kartikay Jainwal 2023-01-21 16:20:19 +00:00 committed by Ido Ophir
parent 22132364a9
commit a268a9ad5c
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ class PagesDataStore(object):
"""Remove the given link from `links_to_crawl`."""
...
def reduce_priority_link_to_crawl(self, url)
def reduce_priority_link_to_crawl(self, url):
"""Reduce the priority of a link in `links_to_crawl` to avoid cycles."""
...