Skip to content

Commit

Permalink
docs: Don't use RST syntax in Python comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Dec 15, 2024
1 parent cf048cc commit efc62a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kingfisher_scrapy/spidermiddlewares.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit efc62a8

Please sign in to comment.