Skip to content

Commit 02d4990

Browse files
committed
Fix CI lint errors
1 parent 4cc84ce commit 02d4990

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

minicode/memory_graph.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from __future__ import annotations
1717

1818
import json
19-
import math
2019
import re
2120
import time
2221
import uuid
@@ -654,7 +653,7 @@ def sync_entries(self, entries: Iterable[Any], *, persist: bool = True) -> bool:
654653
changed = False
655654
for entry in entry_list:
656655
fact_id = f"memory:{entry.id}"
657-
fact = self.add_fact(
656+
self.add_fact(
658657
fact_id=fact_id,
659658
memory_id=entry.id,
660659
scope=getattr(entry, "scope", "project"),

0 commit comments

Comments
 (0)