Fix component debug (#1583)

### What problem does this PR solve?

#1582 

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
H 2024-07-18 11:20:58 +08:00 committed by GitHub
parent 43cd455b52
commit 4d10dbcf95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ from functools import partial
import pandas as pd import pandas as pd
import requests import requests
import re import re
from graph.settings import DEBUG
from graph.component.base import ComponentBase, ComponentParamBase from graph.component.base import ComponentBase, ComponentParamBase

View File

@ -18,7 +18,7 @@ from abc import ABC
from functools import partial from functools import partial
from duckduckgo_search import DDGS from duckduckgo_search import DDGS
import pandas as pd import pandas as pd
from graph.settings import DEBUG
from graph.component.base import ComponentBase, ComponentParamBase from graph.component.base import ComponentBase, ComponentParamBase