Move all cloud imports after skyvern imports (#371)

Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
This commit is contained in:
Kerem Yilmaz
2024-05-27 00:17:41 -07:00
committed by GitHub
parent 688a615fb2
commit 59fa78e642
3 changed files with 6 additions and 2 deletions

View File

@@ -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)