This commit is contained in:
vfdev
2022-02-06 15:11:47 +01:00
committed by Ido Ophir
parent 9826eacfa8
commit 124c33680f

View File

@@ -103,7 +103,7 @@ We could store `links_to_crawl` and `crawled_links` in a key-value **NoSQL Datab
```python
class PagesDataStore(object):
def __init__(self, db);
def __init__(self, db):
self.db = db
...