fix: remove extraneous f-string prefix (ruff F541)

This commit is contained in:
Viktor Barzin 2026-03-22 23:01:33 +02:00
parent f242c45c73
commit 688be268b9
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -913,7 +913,7 @@ async def memory_recall(context: str, expanded_query: str = "",
# Also fetch shared memories (individual + tag-based)
shared_rows = await conn.fetch(
f"""
"""
SELECT DISTINCT ON (m.id) m.id, m.content, m.category, m.tags, m.importance,
m.is_sensitive, ts_rank(m.search_vector, query) AS rank,
m.created_at, m.updated_at, m.user_id AS shared_by