Skip to content

Commit 268c391

Browse files
committed
fix ruff check issues
1 parent 0aa31cf commit 268c391

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

abstra_json_sql/tables.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
from abc import ABC, abstractmethod
33
from enum import Enum
44
import uuid
5+
from .persistence import (
6+
InMemoryTables,
7+
FileSystemJsonTables,
8+
FileSystemJsonLTables,
9+
ExtendedTables,
10+
)
11+
512

613
class ColumnType(Enum):
714
int = "int"
@@ -204,14 +211,6 @@ def delete(self, table_name: str, idxs: List[int]):
204211
raise NotImplementedError("delete method must be implemented")
205212

206213

207-
# Import persistence implementations for backward compatibility
208-
from .persistence import (
209-
InMemoryTables,
210-
FileSystemJsonTables,
211-
FileSystemJsonLTables,
212-
ExtendedTables,
213-
)
214-
215214
__all__ = [
216215
"ColumnType",
217216
"ForeignKey",

0 commit comments

Comments
 (0)