minor PEP8 style changes

This commit is contained in:
Deschner, Magdalena 2019-07-17 13:13:52 +02:00
parent 6660020ebb
commit c44d49b238
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ Here's an example showing how to run a single spider with it.
...
process = CrawlerProcess(settings={
'FEED_FORMAT':'json',
'FEED_URI':'items.json'
'FEED_FORMAT': 'json',
'FEED_URI': 'items.json'
})
process.crawl(MySpider)