Skip to content

Commit db5e8ff

Browse files
bbrowning918carltongibson
authored andcommitted
missed a black run ;_;
1 parent 2b65cec commit db5e8ff

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tests/test_core.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,10 +409,14 @@ def test_repeated_group_send_with_async_to_sync(channel_layer):
409409
channel_layer = RedisChannelLayer(hosts=TEST_HOSTS, capacity=3)
410410

411411
try:
412-
async_to_sync(channel_layer.group_send)('channel_name_1', {"type": "test.message.1"})
413-
async_to_sync(channel_layer.group_send)('channel_name_2', {"type": "test.message.2"})
412+
async_to_sync(channel_layer.group_send)(
413+
"channel_name_1", {"type": "test.message.1"}
414+
)
415+
async_to_sync(channel_layer.group_send)(
416+
"channel_name_2", {"type": "test.message.2"}
417+
)
414418
except RuntimeError as exc:
415-
pytest.fail(F"repeated async_to_sync wrapped group_send calls raised {exc}")
419+
pytest.fail(f"repeated async_to_sync wrapped group_send calls raised {exc}")
416420

417421

418422
@pytest.mark.asyncio

0 commit comments

Comments
 (0)