From 0b643c58b4b471571e21426bc8f732331e589c9d Mon Sep 17 00:00:00 2001 From: Braelyn Boynton Date: Wed, 14 Aug 2024 12:18:05 -0700 Subject: [PATCH] test import fix --- tests/test_agent.py | 2 -- tests/test_singleton.py | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/test_agent.py b/tests/test_agent.py index abf7b12a..408161b9 100644 --- a/tests/test_agent.py +++ b/tests/test_agent.py @@ -1,6 +1,4 @@ from unittest import TestCase -from unittest.mock import patch, MagicMock -from uuid import uuid4 from agentops import track_agent import agentops diff --git a/tests/test_singleton.py b/tests/test_singleton.py index ff936c30..ca479090 100644 --- a/tests/test_singleton.py +++ b/tests/test_singleton.py @@ -1,8 +1,6 @@ import uuid -import pytest - -from agentops.helpers import singleton, conditional_singleton, clear_singletons +from agentops.singleton import singleton, conditional_singleton, clear_singletons @singleton