add missing final
This commit is contained in:
parent
49bea486a7
commit
0b16718f9f
1 changed files with 2 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import asyncio
|
||||
import os
|
||||
from dataclasses import dataclass
|
||||
from typing import Any
|
||||
from typing import Any, final
|
||||
|
||||
from lightrag.base import (
|
||||
BaseKVStorage,
|
||||
|
|
@ -13,6 +13,7 @@ from lightrag.utils import (
|
|||
)
|
||||
|
||||
|
||||
@final
|
||||
@dataclass
|
||||
class JsonKVStorage(BaseKVStorage):
|
||||
def __post_init__(self):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue