From 47ce9266c231789dc6d7368b2e7aa890ab7d4170 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Wed, 27 Nov 2024 19:45:49 -0700 Subject: [PATCH] import not at top of file suppress --- tests/profiling_agent.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/profiling_agent.py b/tests/profiling_agent.py index 8f1b0220..5ab2fc68 100644 --- a/tests/profiling_agent.py +++ b/tests/profiling_agent.py @@ -2,11 +2,11 @@ import time start_time = time.time() -import os -import uuid -from swarms import Agent -from swarm_models import OpenAIChat -from swarms.prompts.finance_agent_sys_prompt import ( +import os # noqa: E402 +import uuid # noqa: E402 +from swarms import Agent # noqa: E402 +from swarm_models import OpenAIChat # noqa: E402 +from swarms.prompts.finance_agent_sys_prompt import ( # noqa: E402 FINANCIAL_AGENT_SYS_PROMPT, )