1 Commits
Author SHA1 Message Date
LeoVasanko 56b955cfdf Fix imports 2026-06-12 19:23:23 +00:00
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
import jsondiff
from kanta.kanta.structs import ChangeRecord
from kanta.structs import ChangeRecord
from kanta.serialization.base import ReplayResult, replay
from kanta.serialization.framing import LineFramer
from kanta.serialization.json import JsonSerializer
+1 -1
View File
@@ -8,7 +8,7 @@ from types import ModuleType
from typing import Any, Generic, TypeVar
from kanta.exceptions import DatabaseError
from kanta.kanta.kantaimpl import KantaImpl
from kanta.kantaimpl import KantaImpl
from kanta.serialization import JsonSerializer, Serializer
from kanta.transaction import transaction as _transaction
+1 -1
View File
@@ -15,7 +15,7 @@ from typing import Any
from kanta.diff import compute_diff
from kanta.exceptions import DatabaseError, DataIntegrityError
from kanta.filelock import LockedFile
from kanta.kanta.structs import ChangeRecord
from kanta.structs import ChangeRecord
from kanta.serialization import JsonSerializer, Serializer
from kanta.serialization.framing import Framer
from kanta.snapshot import SnapshotState
+1 -1
View File
@@ -9,7 +9,7 @@ from typing import Any, Protocol, TypeVar
import msgspec
from kanta.exceptions import ReplayError
from kanta.kanta.structs import ChangeRecord, Snapshot
from kanta.structs import ChangeRecord, Snapshot
from kanta.serialization.framing import Framer
T = TypeVar("T")
+1 -1
View File
@@ -5,7 +5,7 @@ from __future__ import annotations
import logging
from datetime import UTC, datetime
from kanta.kanta.structs import Snapshot
from kanta.structs import Snapshot
from kanta.serialization import JsonSerializer, Serializer
from kanta.serialization.framing import Framer, LineFramer