Skip to content

Commit a8f44a9

Browse files
committed
fix: remove redundant characters
1 parent 18d778f commit a8f44a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

veadk/database/local_database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ class LocalDataBase(BaseDatabase):
2424

2525
def __init__(self, **kwargs):
2626
super().__init__()
27-
self.data = {} # 改为字典
27+
self.data = {}
2828
self._type = "local"
29-
self._next_id = 0 # 用于生成唯一ID
29+
self._next_id = 0 # Used to generate unique IDs
3030

3131
def add_texts(self, texts: list[str], **kwargs):
3232
for text in texts:

0 commit comments

Comments
 (0)