Skip to content

Commit 5ac66af

Browse files
committed
style(db): reorder imports alphabetically
Reorder imports in db/__init__.py to follow standard alphabetical ordering. Auto-fixed by ruff linter.
1 parent b72c21b commit 5ac66af

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

db/__init__.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@
2929
await close_database()
3030
"""
3131

32-
from db.connection import DatabaseManager, get_database, close_database
32+
from db.connection import DatabaseManager, close_database, get_database
33+
from db.executor import (
34+
QueryResult,
35+
QueryValidator,
36+
SafeQueryExecutor,
37+
sanitize_identifier,
38+
)
3339
from db.schema import (
40+
ColumnInfo,
41+
ForeignKeyInfo,
3442
SchemaInfo,
3543
SchemaIntrospector,
3644
TableInfo,
37-
ColumnInfo,
38-
ForeignKeyInfo,
3945
get_sample_data,
4046
)
41-
from db.executor import (
42-
SafeQueryExecutor,
43-
QueryResult,
44-
QueryValidator,
45-
sanitize_identifier,
46-
)
4747

4848
__all__ = [
4949
# Connection management

0 commit comments

Comments
 (0)