Enable pyupgrade on skyvern/cli (#2806)

This commit is contained in:
Asher Foa
2025-06-27 21:22:34 -04:00
committed by GitHub
parent b280308b15
commit 8cad3aae18
3 changed files with 10 additions and 13 deletions

View File

@@ -4,7 +4,6 @@ from __future__ import annotations
import json
import os
from typing import Optional
import typer
from dotenv import load_dotenv
@@ -21,7 +20,7 @@ tasks_app = typer.Typer(help="Manage Skyvern tasks and operations.")
@tasks_app.callback()
def tasks_callback(
ctx: typer.Context,
api_key: Optional[str] = typer.Option(
api_key: str | None = typer.Option(
None,
"--api-key",
help="Skyvern API key",
@@ -32,7 +31,7 @@ def tasks_callback(
ctx.obj = {"api_key": api_key}
def _get_client(api_key: Optional[str] = None) -> Skyvern:
def _get_client(api_key: str | None = None) -> Skyvern:
"""Instantiate a Skyvern SDK client using environment variables."""
load_dotenv()
load_dotenv(".env")