mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 16:48:30 +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()
|
||||
|
||||
from my_flow.main import MyFlow
|
||||
from my_flow.main import MyFlow # noqa: E402
|
||||
|
||||
def main():
|
||||
"""Run the flow from a custom script."""
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import os
|
||||
import sys
|
||||
from pathlib import Path
|
||||
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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user