Skip to content

Commit f2c6216

Browse files
committed
style: remove unwanted import from spiders main init file
1 parent 72c3c27 commit f2c6216

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

scrapling/spiders/__init__.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
from .spider import Spider, SessionConfigurationError, LogCounterHandler
21
from .request import Request
3-
from .result import CrawlStats, CrawlResult
2+
from .result import CrawlResult
3+
from .scheduler import Scheduler
44
from .engine import CrawlerEngine
55
from .session import SessionManager
6-
from .scheduler import Scheduler
6+
from .spider import Spider, SessionConfigurationError
77
from scrapling.engines.toolbelt.custom import Response
88

99
__all__ = [
1010
"Spider",
1111
"SessionConfigurationError",
12-
"LogCounterHandler",
1312
"Request",
1413
"CrawlerEngine",
15-
"CrawlStats",
1614
"CrawlResult",
1715
"SessionManager",
1816
"Scheduler",

0 commit comments

Comments
 (0)