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

AmazonCheckerPipeline.process_item()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 3
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