fix: remove extraneous f-string prefixes to pass ruff lint
This commit is contained in:
parent
ba9d31f479
commit
2fbca35e77
1 changed files with 2 additions and 2 deletions
|
|
@ -448,8 +448,8 @@ class MemoryServer:
|
|||
)
|
||||
|
||||
base_select = (
|
||||
f"SELECT m.id, m.content, m.category, m.tags, m.importance, m.created_at "
|
||||
f"FROM memories m JOIN memories_fts fts ON m.id = fts.rowid "
|
||||
"SELECT m.id, m.content, m.category, m.tags, m.importance, m.created_at "
|
||||
"FROM memories m JOIN memories_fts fts ON m.id = fts.rowid "
|
||||
)
|
||||
cursor = self.sqlite_conn.cursor()
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue