spelling: pipeline

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-12-18 20:26:18 -05:00
parent f5d024f16c
commit 8ae77fdb34
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ class ZeroDivisionErrorPipeline:
return item
class ProcessWithZeroDivisionErrorPipiline:
class ProcessWithZeroDivisionErrorPipeline:
def process_item(self, item, spider):
1 / 0

View File

@ -109,7 +109,7 @@ class DataClassItemsSpider(TestSpider):
class ItemZeroDivisionErrorSpider(TestSpider):
custom_settings = {
"ITEM_PIPELINES": {
"tests.pipelines.ProcessWithZeroDivisionErrorPipiline": 300,
"tests.pipelines.ProcessWithZeroDivisionErrorPipeline": 300,
}
}