From efc62a888ce9d7522eb5188f38a1137876122ee6 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sun, 15 Dec 2024 14:31:43 -0500 Subject: [PATCH] docs: Don't use RST syntax in Python comments --- kingfisher_scrapy/spidermiddlewares.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kingfisher_scrapy/spidermiddlewares.py b/kingfisher_scrapy/spidermiddlewares.py index 9fed06d1f..cb24fe034 100644 --- a/kingfisher_scrapy/spidermiddlewares.py +++ b/kingfisher_scrapy/spidermiddlewares.py @@ -198,7 +198,7 @@ async def process_spider_output(self, response, result, spider): read_data_from_file_if_any(item) data = item.data - # If the spider's ``root_path`` class attribute is non-empty, then the JSON data is already parsed. + # If the spider's `root_path` class attribute is non-empty, then the JSON data is already parsed. if isinstance(data, bytes): data = json.loads(data)