From 2e444539154f57bedcbb3ae3c18b114aae0b819f Mon Sep 17 00:00:00 2001 From: creyD Date: Mon, 9 Dec 2024 15:29:15 +0000 Subject: [PATCH] Adjusted files for isort & autopep --- creyPY/fastapi/testing_async.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/creyPY/fastapi/testing_async.py b/creyPY/fastapi/testing_async.py index 538ae31..1e1fb5d 100644 --- a/creyPY/fastapi/testing_async.py +++ b/creyPY/fastapi/testing_async.py @@ -4,7 +4,9 @@ from httpx import AsyncClient, ASGITransport class AsyncGenericClient: def __init__(self, app): - self.c = AsyncClient(transport=ASGITransport(app=app), base_url="http://testserver", follow_redirects=True) + self.c = AsyncClient( + transport=ASGITransport(app=app), base_url="http://testserver", follow_redirects=True + ) self.default_headers = {} async def get(self, url: str, r_code: int = 200, parse_json=True):