Skip to content

Commit 879a2bc

Browse files
committed
Codestyle changes
1 parent 93c0bb7 commit 879a2bc

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

tests/test_bloom.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414

1515
@pytest.fixture()
1616
def decoded_r(request):
17-
with _get_client(
18-
redis.Redis, request, decode_responses=True
19-
) as client:
17+
with _get_client(redis.Redis, request, decode_responses=True) as client:
2018
yield client
2119

2220

tests/test_json.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import pytest
22
import redis
3-
from redis import exceptions, Redis
3+
from redis import Redis, exceptions
44
from redis.commands.json.decoders import decode_list, unstring
55
from redis.commands.json.path import Path
66

7-
from .conftest import assert_resp_response, skip_ifmodversion_lt, _get_client
7+
from .conftest import _get_client, assert_resp_response, skip_ifmodversion_lt
88

99

1010
@pytest.fixture

tests/test_timeseries.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515

1616
@pytest.fixture()
1717
def decoded_r(request):
18-
with _get_client(
19-
redis.Redis, request, decode_responses=True
20-
) as client:
18+
with _get_client(redis.Redis, request, decode_responses=True) as client:
2119
yield client
2220

2321

0 commit comments

Comments
 (0)