Fix import sorting in test_encoding.py with ruff auto-fix

Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
Devin AI
2025-04-29 12:09:28 +00:00
parent cd7deed7d8
commit 4b116638ff

View File

@@ -4,8 +4,13 @@ import unittest
from pathlib import Path
from unittest.mock import patch
from crewai.cli.provider import read_cache_file, fetch_provider_data
from crewai.cli.utils import copy_template, load_env_vars, tree_find_and_replace, write_env_file
from crewai.cli.provider import fetch_provider_data, read_cache_file
from crewai.cli.utils import (
copy_template,
load_env_vars,
tree_find_and_replace,
write_env_file,
)
class TestEncoding(unittest.TestCase):