From 5e76464fbf1338bb791b4ae2ad97dd33f72dd0a1 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Wed, 14 Jun 2023 18:01:41 +0400 Subject: [PATCH] Fix a merge error. --- scrapy/interfaces.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scrapy/interfaces.py b/scrapy/interfaces.py index d8e5f9866..b8aa77ced 100644 --- a/scrapy/interfaces.py +++ b/scrapy/interfaces.py @@ -17,11 +17,6 @@ class ISpiderLoader(Interface): """Return the list of spiders names that can handle the given request""" -# ISpiderManager is deprecated, don't use it! -# An alias is kept for backwards compatibility. -ISpiderManager = ISpiderLoader - - class IAddon(Interface): """Scrapy add-on"""