mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-26 00:28:13 +00:00
Fix lint issues with import ordering
Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
@@ -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."""
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user