Skip to content

Commit 88070ed

Browse files
committed
Blackened
1 parent b8dac3e commit 88070ed

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

tests/test_end_to_end/golden-master/my_test_api_client/async_api/users.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ async def get_list_tests__get(
2323
}
2424

2525
with httpx.AsyncClient() as client:
26-
response = await client.get(
27-
url=url, headers=client.get_headers(), params=params,
28-
)
26+
response = await client.get(url=url, headers=client.get_headers(), params=params,)
2927

3028
if response.status_code == 200:
3129
return [AModel.from_dict(item) for item in response.json()]

tests/test_end_to_end/golden-master/my_test_api_client/models/a_model.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ def to_dict(self) -> Dict:
2929
@staticmethod
3030
def from_dict(d: Dict) -> AModel:
3131

32-
an_enum_value = (
33-
AnEnumValue(d["an_enum_value"]) if "an_enum_value" in d else None
34-
)
32+
an_enum_value = AnEnumValue(d["an_enum_value"]) if "an_enum_value" in d else None
3533

3634
a_list_of_enums = []
3735
for a_list_of_enums_item in d.get("a_list_of_enums", []):

0 commit comments

Comments
 (0)