Skip to content

Commit aca860d

Browse files
committed
Fixes from black, isort
1 parent d244269 commit aca860d

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

aredis_om/model/model.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
from ..connections import get_redis_connection
4141
from ..unasync_util import ASYNC_MODE
4242
from .encoders import (
43-
jsonable_encoder,
44-
datetime_to_timestamp,
4543
date_to_timestamp,
44+
datetime_to_timestamp,
45+
jsonable_encoder,
4646
time_to_timestamp,
4747
)
4848
from .render_tree import render_tree

tests/test_hash_model.py

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
from redis_om import has_redisearch
2626
from tests.conftest import py_test_mark_asyncio
2727

28+
2829
if not has_redisearch():
2930
pytestmark = pytest.mark.skip
3031

tests/test_json_model.py

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
from redis_om import has_redis_json
2828
from tests.conftest import py_test_mark_asyncio
2929

30+
3031
if not has_redis_json():
3132
pytestmark = pytest.mark.skip
3233

tests/test_time.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
import pytest_asyncio
66
from pydantic import validator
77

8-
from aredis_om import Field, Migrator, JsonModel, HashModel
8+
from aredis_om import Field, HashModel, JsonModel, Migrator
9+
910
from .conftest import py_test_mark_asyncio
1011

1112

0 commit comments

Comments
 (0)