Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pieroit committed Jan 27, 2025
1 parent 8d6b5ef commit 99c55e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/tests/memory/test_class_working_memory.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from langchain_core.messages import AIMessage, HumanMessage

from cat.convo.messages import Role, ConversationMessage, UserMessage, CatMessage
from cat.convo.messages import Role, UserMessage, CatMessage
from cat.memory.working_memory import WorkingMemory

def create_working_memory_with_convo_history():
Expand All @@ -17,8 +17,8 @@ def test_create_working_memory():

wm = WorkingMemory()
assert wm.history == []
assert wm.user_message_json == None
assert wm.active_form == None
assert wm.user_message_json is None
assert wm.active_form is None
assert wm.recall_query == ""
assert wm.episodic_memories == []
assert wm.declarative_memories == []
Expand Down

0 comments on commit 99c55e6

Please sign in to comment.