Fix lint issues with import ordering

Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
Devin AI
2025-04-05 22:34:22 +00:00
parent 2643f4c69a
commit 8636e1a64e
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ from crewai.utilities.path_utils import add_project_to_path
add_project_to_path() add_project_to_path()
from my_flow.main import MyFlow from my_flow.main import MyFlow # noqa: E402
def main(): def main():
"""Run the flow from a custom script.""" """Run the flow from a custom script."""

View File

@@ -1,8 +1,8 @@
import os import os
import sys import sys
from pathlib import Path
import unittest import unittest
from unittest.mock import patch, MagicMock from pathlib import Path
from unittest.mock import MagicMock, patch
from crewai.utilities.path_utils import add_project_to_path from crewai.utilities.path_utils import add_project_to_path