Skip to content

Commit bce8a6e

Browse files
committed
changing the code to be compatible with python 3.8
1 parent fcd6710 commit bce8a6e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/integration/conftest.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -574,11 +574,9 @@ def fixture_registry_async_client_custom_config(
574574
) -> Callable[[ConfigDefaults], AsyncContextManager[Client]]:
575575
@asynccontextmanager
576576
async def client_from_custom_config(config: ConfigDefaults) -> Client:
577-
async with (
578-
registry_cluster_from_custom_config(config) as registry_description,
579-
_registry_async_client(request, registry_description, loop) as client,
580-
):
581-
yield client
577+
async with registry_cluster_from_custom_config(config) as registry_description:
578+
async with _registry_async_client(request, registry_description, loop) as client:
579+
yield client
582580

583581
return client_from_custom_config
584582

0 commit comments

Comments
 (0)