From c44d49b238f1c6cfc07ffa2fbb65b267e19e381c Mon Sep 17 00:00:00 2001 From: "Deschner, Magdalena" Date: Wed, 17 Jul 2019 13:13:52 +0200 Subject: [PATCH] minor PEP8 style changes --- docs/topics/practices.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/practices.rst b/docs/topics/practices.rst index 610a39ea9..a6d4f0d6d 100644 --- a/docs/topics/practices.rst +++ b/docs/topics/practices.rst @@ -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)