From 80e692a51df3be58a962bed7d48103033f8c71df Mon Sep 17 00:00:00 2001 From: mogita Date: Sat, 16 Aug 2025 16:29:03 +0800 Subject: [PATCH] refactor: clean up imports --- cli/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/utils.py b/cli/utils.py index 91bd097e..1c1c545e 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -1,3 +1,4 @@ +import os import questionary import re from datetime import datetime @@ -398,8 +399,6 @@ def get_custom_provider_info() -> tuple[str, str] | None: Raises: SystemExit: If custom URL is provided but invalid (exits with error message) """ - import os - from urllib.parse import urlparse custom_url = os.getenv("CUSTOM_BASE_URL") custom_api_key = os.getenv("CUSTOM_API_KEY")