Ruff: use I rule for isort (#1410)

Ruff: use I rule for isort
This commit is contained in:
Jirka Borovec
2024-04-30 00:41:58 +02:00
committed by GitHub
parent 086a2ed17f
commit 0c2ebfd6e1
78 changed files with 301 additions and 247 deletions

View File

@@ -1,17 +1,21 @@
from .micro.registry import all_microagents
from .micro.agent import MicroAgent
from dotenv import load_dotenv
from opendevin.agent import Agent
from dotenv import load_dotenv
from .micro.agent import MicroAgent
from .micro.registry import all_microagents
load_dotenv()
# Import agents after environment variables are loaded
from . import monologue_agent # noqa: E402
from . import codeact_agent # noqa: E402
from . import planner_agent # noqa: E402
from . import SWE_agent # noqa: E402
from . import delegator_agent # noqa: E402
from . import ( # noqa: E402
SWE_agent,
codeact_agent,
delegator_agent,
monologue_agent,
planner_agent,
)
__all__ = ['monologue_agent', 'codeact_agent',
'planner_agent', 'SWE_agent', 'delegator_agent']