Skip to content

Commit 360ce1c

Browse files
committed
fix: pyproject.toml
1 parent a96617d commit 360ce1c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[project]
22
name = "scrapegraphai"
33
version = "1.15.1"
4-
54
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
65
authors = [
76
{ name = "Marco Vinciguerra", email = "[email protected]" },

scrapegraphai/graphs/base_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import warnings
66
from typing import Tuple
77
from langchain_community.callbacks import get_openai_callback
8-
from ..integrations import BurrBridge
98
from ..telemetry import log_graph_execution
109

1110
class BaseGraph:
@@ -255,6 +254,7 @@ def execute(self, initial_state: dict) -> Tuple[dict, list]:
255254

256255
self.initial_state = initial_state
257256
if self.use_burr:
257+
from ..integrations import BurrBridge
258258

259259
bridge = BurrBridge(self, self.burr_config)
260260
result = bridge.execute(initial_state)

0 commit comments

Comments
 (0)