diff --git a/scrapegraphai/graphs/smart_scraper_graph.py b/scrapegraphai/graphs/smart_scraper_graph.py index 8cf11f35..ffcd3dbe 100644 --- a/scrapegraphai/graphs/smart_scraper_graph.py +++ b/scrapegraphai/graphs/smart_scraper_graph.py @@ -7,9 +7,6 @@ from pydantic import BaseModel -# Initialize logger -logger = logging.getLogger(__name__) - from ..nodes import ( ConditionalNode, FetchNode, @@ -21,6 +18,9 @@ from .abstract_graph import AbstractGraph from .base_graph import BaseGraph +# Initialize logger +logger = logging.getLogger(__name__) + class SmartScraperGraph(AbstractGraph): """ @@ -97,7 +97,7 @@ def _create_graph(self) -> BaseGraph: ) # Use logging instead of print for better production practices - if 'request_id' in response and 'result' in response: + if "request_id" in response and "result" in response: logger.info(f"Request ID: {response['request_id']}") logger.info(f"Result: {response['result']}") else: