Skip to content

Commit

Permalink
refactor: Lint integrations-service (CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorrr authored and github-actions[bot] committed Nov 29, 2024
1 parent 636ca8e commit 5f370b3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@
ExecutionResponse,
ExecutionSetup,
)
from ..models.execution import (
ExecutionArguments,
ExecutionError,
ExecutionResponse,
ExecutionSetup,
)


@beartype
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@
BrowserbaseListSessionsArguments,
BrowserbaseSetup,
)
from ...env import ( # Import env to access environment variables
browserbase_api_key,
browserbase_project_id,
)
from ...env import ( # Import env to access environment variables
from ...env import ( # Import env to access environment variables # Import env to access environment variables
browserbase_api_key,
browserbase_project_id,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
from tenacity import retry, stop_after_attempt, wait_exponential

from ...autogen.Tools import LlamaParseFetchArguments, LlamaParseSetup
from ...env import llama_api_key # Import env to access environment variables
from ...env import llama_api_key # Import env to access environment variables
from ...env import (
llama_api_key, # Import env to access environment variables # Import env to access environment variables
)
from ...models import LlamaParseFetchOutput


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
from tenacity import retry, stop_after_attempt, wait_exponential

from ...autogen.Tools import SpiderFetchArguments, SpiderSetup
from ...env import spider_api_key # Import env to access environment variables
from ...env import spider_api_key # Import env to access environment variables
from ...env import (
spider_api_key, # Import env to access environment variables # Import env to access environment variables
)
from ...models import SpiderFetchOutput


Expand Down

0 comments on commit 5f370b3

Please sign in to comment.