suppress unused import errors

pull/649/head
evelynmitchell 5 months ago
parent dc5be009ff
commit ba5d9117d5

@ -9,7 +9,7 @@ load_dotenv()
from swarms.telemetry.bootup import bootup # noqa: E402, F403 from swarms.telemetry.bootup import bootup # noqa: E402, F403
from swarms.telemetry.sentry_active import ( from swarms.telemetry.sentry_active import ( # noqa: E402
activate_sentry, activate_sentry,
) # noqa: E402 ) # noqa: E402
@ -18,11 +18,11 @@ with concurrent.futures.ThreadPoolExecutor(max_workers=2) as executor:
executor.submit(bootup) executor.submit(bootup)
executor.submit(activate_sentry) executor.submit(activate_sentry)
from swarms.agents import * # noqa: E402, F403 from swarms.agents import * # noqa: E402, F401, F403
from swarms.artifacts import * # noqa: E402, F403 from swarms.artifacts import * # noqa: E402, F401, F403
from swarms.prompts import * # noqa: E402, F403 from swarms.prompts import * # noqa: E402, F401 F403
from swarms.schemas import * # noqa: E402, F403 from swarms.schemas import * # noqa: E402, F401, F403
from swarms.structs import * # noqa: E402, F403 from swarms.structs import * # noqa: E402, F401, F403
from swarms.telemetry import * # noqa: E402, F403 from swarms.telemetry import * # noqa: E402, F401, F403
from swarms.tools import * # noqa: E402, F403 from swarms.tools import * # noqa: E402, F401, F403
from swarms.utils import * # noqa: E402, F403 from swarms.utils import * # noqa: E402, F401, F403

Loading…
Cancel
Save