mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-01 18:20:06 +00:00
Move all cloud imports after skyvern imports (#371)
Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
This commit is contained in:
parent
688a615fb2
commit
59fa78e642
3 changed files with 6 additions and 2 deletions
|
@ -125,7 +125,9 @@ force_grid_wrap = 0
|
|||
use_parentheses = true
|
||||
ensure_newline_before_comments = true
|
||||
line_length = 120
|
||||
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
|
||||
known_skyvern = "skyvern"
|
||||
known_cloud = "cloud"
|
||||
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "SKYVERN", "CLOUD", "FIRSTPARTY", "LOCALFOLDER"]
|
||||
skip_glob = [".tox", "__pycache__", "*.pyc", "venv*/*", "reports", "venv", "env", "node_modules", ".env", ".venv", "dist"]
|
||||
skip = ["webeye/actions/__init__.py", "forge/sdk/__init__.py"]
|
||||
|
||||
|
|
|
@ -3,9 +3,10 @@ from typing import Annotated, Optional
|
|||
|
||||
import typer
|
||||
|
||||
from scripts.create_api_key import create_org_api_token
|
||||
from skyvern.forge.app import DATABASE
|
||||
|
||||
from scripts.create_api_key import create_org_api_token
|
||||
|
||||
|
||||
async def create_org(org_name: str, webhook_callback_url: str | None = None) -> None:
|
||||
organization = await DATABASE.create_organization(org_name, webhook_callback_url)
|
||||
|
|
|
@ -7,6 +7,7 @@ import streamlit as st
|
|||
|
||||
from skyvern import analytics
|
||||
from skyvern.forge.sdk.schemas.tasks import ProxyLocation, TaskRequest
|
||||
|
||||
from streamlit_app.visualizer import styles
|
||||
from streamlit_app.visualizer.api import SkyvernClient
|
||||
from streamlit_app.visualizer.artifact_loader import (
|
||||
|
|
Loading…
Add table
Reference in a new issue