style: fix ruff import sorting issue

Sort dotenv imports alphabetically to comply with ruff I001 rule
This commit is contained in:
谢栋梁
2025-09-02 08:58:21 +08:00
parent d34c299f02
commit 4493a69333

View File

@@ -31,7 +31,7 @@ from typing import Any, Optional
# Try to load environment variables from .env file if dotenv is available
# This is optional - environment variables can still be passed directly
try:
from dotenv import load_dotenv, dotenv_values
from dotenv import dotenv_values, load_dotenv
# Load environment variables from .env file in the script's directory
# This ensures .env is loaded regardless of the current working directory