Skip to content

Commit 0e95c5b

Browse files
Reorder imports to alphabetical.
1 parent 375b190 commit 0e95c5b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

db_wrapper/model/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
"""Convenience objects to simplify database interactions w/ given interface."""
22

3-
from .sync_model import (
4-
SyncModel,
5-
SyncCreate,
6-
SyncRead,
7-
SyncUpdate,
8-
SyncDelete
9-
)
103
from .async_model import (
114
AsyncModel,
125
AsyncCreate,
136
AsyncRead,
147
AsyncUpdate,
158
AsyncDelete
169
)
10+
from .sync_model import (
11+
SyncModel,
12+
SyncCreate,
13+
SyncRead,
14+
SyncUpdate,
15+
SyncDelete
16+
)
1717
from .base import ModelData, sql

0 commit comments

Comments
 (0)