Skip to content

Commit

Permalink
fix(lint): use correct syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
thehapyone committed Sep 22, 2024
1 parent 2802187 commit a11ffb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crewai/memory/long_term/long_term_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class LongTermMemory(Memory):
"""

def __init__(self, storage: Storage=None):
storage = storage if storage esle LTMSQLiteStorage()
storage = storage if storage else LTMSQLiteStorage()
super().__init__(storage)

def save(self, item: LongTermMemoryItem) -> None: # type: ignore # BUG?: Signature of "save" incompatible with supertype "Memory"
Expand Down

0 comments on commit a11ffb4

Please sign in to comment.