Skip to content

Commit cbe40af

Browse files
author
Constantinos Symeonides
committed
chore: Reformat
1 parent b824cc5 commit cbe40af

38 files changed

+66
-62
lines changed

end_to_end_tests/golden-record/my_test_api_client/api/tests/defaults_tests_defaults_post.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def sync(
222222
nullable_model_prop: Union[Unset, None, ModelWithUnionProperty] = UNSET,
223223
nullable_required_model_prop: Optional[ModelWithUnionProperty],
224224
) -> Optional[Union[HTTPValidationError, None]]:
225-
""" """
225+
""" """
226226

227227
return sync_detailed(
228228
client=client,
@@ -315,7 +315,7 @@ async def asyncio(
315315
nullable_model_prop: Union[Unset, None, ModelWithUnionProperty] = UNSET,
316316
nullable_required_model_prop: Optional[ModelWithUnionProperty],
317317
) -> Optional[Union[HTTPValidationError, None]]:
318-
""" """
318+
""" """
319319

320320
return (
321321
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/get_basic_list_of_booleans.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def sync(
5959
*,
6060
client: Client,
6161
) -> Optional[List[bool]]:
62-
"""Get a list of booleans"""
62+
""" Get a list of booleans """
6363

6464
return sync_detailed(
6565
client=client,
@@ -84,7 +84,7 @@ async def asyncio(
8484
*,
8585
client: Client,
8686
) -> Optional[List[bool]]:
87-
"""Get a list of booleans"""
87+
""" Get a list of booleans """
8888

8989
return (
9090
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/get_basic_list_of_floats.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def sync(
5959
*,
6060
client: Client,
6161
) -> Optional[List[float]]:
62-
"""Get a list of floats"""
62+
""" Get a list of floats """
6363

6464
return sync_detailed(
6565
client=client,
@@ -84,7 +84,7 @@ async def asyncio(
8484
*,
8585
client: Client,
8686
) -> Optional[List[float]]:
87-
"""Get a list of floats"""
87+
""" Get a list of floats """
8888

8989
return (
9090
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/get_basic_list_of_integers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def sync(
5959
*,
6060
client: Client,
6161
) -> Optional[List[int]]:
62-
"""Get a list of integers"""
62+
""" Get a list of integers """
6363

6464
return sync_detailed(
6565
client=client,
@@ -84,7 +84,7 @@ async def asyncio(
8484
*,
8585
client: Client,
8686
) -> Optional[List[int]]:
87-
"""Get a list of integers"""
87+
""" Get a list of integers """
8888

8989
return (
9090
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/get_basic_list_of_strings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def sync(
5959
*,
6060
client: Client,
6161
) -> Optional[List[str]]:
62-
"""Get a list of strings"""
62+
""" Get a list of strings """
6363

6464
return sync_detailed(
6565
client=client,
@@ -84,7 +84,7 @@ async def asyncio(
8484
*,
8585
client: Client,
8686
) -> Optional[List[str]]:
87-
"""Get a list of strings"""
87+
""" Get a list of strings """
8888

8989
return (
9090
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/get_user_list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def sync(
102102
an_enum_value: List[AnEnum],
103103
some_date: Union[datetime.date, datetime.datetime],
104104
) -> Optional[Union[HTTPValidationError, List[AModel]]]:
105-
"""Get a list of things"""
105+
""" Get a list of things """
106106

107107
return sync_detailed(
108108
client=client,
@@ -135,7 +135,7 @@ async def asyncio(
135135
an_enum_value: List[AnEnum],
136136
some_date: Union[datetime.date, datetime.datetime],
137137
) -> Optional[Union[HTTPValidationError, List[AModel]]]:
138-
"""Get a list of things"""
138+
""" Get a list of things """
139139

140140
return (
141141
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/int_enum_tests_int_enum_post.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def sync(
7777
client: Client,
7878
int_enum: AnIntEnum,
7979
) -> Optional[Union[HTTPValidationError, None]]:
80-
""" """
80+
""" """
8181

8282
return sync_detailed(
8383
client=client,
@@ -106,7 +106,7 @@ async def asyncio(
106106
client: Client,
107107
int_enum: AnIntEnum,
108108
) -> Optional[Union[HTTPValidationError, None]]:
109-
""" """
109+
""" """
110110

111111
return (
112112
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/json_body_tests_json_body_post.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def sync(
7272
client: Client,
7373
json_body: AModel,
7474
) -> Optional[Union[HTTPValidationError, None]]:
75-
"""Try sending a JSON body"""
75+
""" Try sending a JSON body """
7676

7777
return sync_detailed(
7878
client=client,
@@ -101,7 +101,7 @@ async def asyncio(
101101
client: Client,
102102
json_body: AModel,
103103
) -> Optional[Union[HTTPValidationError, None]]:
104-
"""Try sending a JSON body"""
104+
""" Try sending a JSON body """
105105

106106
return (
107107
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/octet_stream_tests_octet_stream_get.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def sync(
6060
*,
6161
client: Client,
6262
) -> Optional[File]:
63-
""" """
63+
""" """
6464

6565
return sync_detailed(
6666
client=client,
@@ -85,7 +85,7 @@ async def asyncio(
8585
*,
8686
client: Client,
8787
) -> Optional[File]:
88-
""" """
88+
""" """
8989

9090
return (
9191
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/api/tests/optional_value_tests_optional_query_param.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def sync(
7878
client: Client,
7979
query_param: Union[Unset, List[str]] = UNSET,
8080
) -> Optional[Union[HTTPValidationError, None]]:
81-
"""Test optional query parameters"""
81+
""" Test optional query parameters """
8282

8383
return sync_detailed(
8484
client=client,
@@ -107,7 +107,7 @@ async def asyncio(
107107
client: Client,
108108
query_param: Union[Unset, List[str]] = UNSET,
109109
) -> Optional[Union[HTTPValidationError, None]]:
110-
"""Test optional query parameters"""
110+
""" Test optional query parameters """
111111

112112
return (
113113
await asyncio_detailed(

0 commit comments

Comments
 (0)