Passed
Pull Request — master (#8)
by Aurélien
01:03
created

AmazonChecker.pipelines   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A AmazonCheckerPipeline.process_item() 0 2 1
1
# -*- coding: utf-8 -*-
2
3
# Define your item pipelines here
4
#
5
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
6
# See: https://doc.scrapy.org/en/latest/topics/item-pipeline.html
7
8
9
class AmazonCheckerPipeline(object):
10
    def process_item(self, item, spider):
11
        return item
12