Skip to content

Commit ab2fc17

Browse files
committed
chore: Regen, fix errors
1 parent 4b25700 commit ab2fc17

File tree

43 files changed

+54
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+54
-89
lines changed

end_to_end_tests/golden-record/my_test_api_client/api/default/get_common_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _get_kwargs(
1717

1818
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
1919

20-
_kwargs = {
20+
_kwargs: Dict[str, Any] = {
2121
"method": "get",
2222
"url": "/common_parameters",
2323
"params": params,

end_to_end_tests/golden-record/my_test_api_client/api/default/post_common_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _get_kwargs(
1717

1818
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
1919

20-
_kwargs = {
20+
_kwargs: Dict[str, Any] = {
2121
"method": "post",
2222
"url": "/common_parameters",
2323
"params": params,

end_to_end_tests/golden-record/my_test_api_client/api/default/reserved_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _get_kwargs(
2020

2121
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
2222

23-
_kwargs = {
23+
_kwargs: Dict[str, Any] = {
2424
"method": "get",
2525
"url": "/naming/reserved-parameters",
2626
"params": params,

end_to_end_tests/golden-record/my_test_api_client/api/location/get_location_header_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def _get_kwargs(
3838
if not isinstance(string_enum_header, Unset):
3939
headers["String-Enum-Header"] = str(string_enum_header)
4040

41-
_kwargs = {
41+
_kwargs: Dict[str, Any] = {
4242
"method": "get",
4343
"url": "/location/header/types",
4444
}

end_to_end_tests/golden-record/my_test_api_client/api/location/get_location_query_optionality.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _get_kwargs(
4141

4242
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
4343

44-
_kwargs = {
44+
_kwargs: Dict[str, Any] = {
4545
"method": "get",
4646
"url": "/location/query/optionality",
4747
"params": params,

end_to_end_tests/golden-record/my_test_api_client/api/naming/post_naming_property_conflict_with_import.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _get_kwargs(
1818
) -> Dict[str, Any]:
1919
headers = {}
2020

21-
_kwargs = {
21+
_kwargs: Dict[str, Any] = {
2222
"method": "post",
2323
"url": "/naming/property-conflict-with-import",
2424
}

end_to_end_tests/golden-record/my_test_api_client/api/parameter_references/get_parameter_references_path_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _get_kwargs(
3131

3232
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
3333

34-
_kwargs = {
34+
_kwargs: Dict[str, Any] = {
3535
"method": "get",
3636
"url": "/parameter-references/{path_param}".format(
3737
path_param=path_param,

end_to_end_tests/golden-record/my_test_api_client/api/parameters/delete_common_parameters_overriding_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _get_kwargs(
1818

1919
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
2020

21-
_kwargs = {
21+
_kwargs: Dict[str, Any] = {
2222
"method": "delete",
2323
"url": "/common_parameters_overriding/{param}".format(
2424
param=param_path,

end_to_end_tests/golden-record/my_test_api_client/api/parameters/get_common_parameters_overriding_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _get_kwargs(
1818

1919
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
2020

21-
_kwargs = {
21+
_kwargs: Dict[str, Any] = {
2222
"method": "get",
2323
"url": "/common_parameters_overriding/{param}".format(
2424
param=param_path,

end_to_end_tests/golden-record/my_test_api_client/api/parameters/get_same_name_multiple_locations_param.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def _get_kwargs(
2828

2929
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
3030

31-
_kwargs = {
31+
_kwargs: Dict[str, Any] = {
3232
"method": "get",
3333
"url": "/same-name-multiple-locations/{param}".format(
3434
param=param_path,

end_to_end_tests/golden-record/my_test_api_client/api/parameters/multiple_path_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def _get_kwargs(
1414
param1: str,
1515
param3: int,
1616
) -> Dict[str, Any]:
17-
_kwargs = {
17+
_kwargs: Dict[str, Any] = {
1818
"method": "get",
1919
"url": "/multiple-path-parameters/{param4}/something/{param2}/{param1}/{param3}".format(
2020
param4=param4,

end_to_end_tests/golden-record/my_test_api_client/api/responses/post_responses_unions_simple_before_complex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
def _get_kwargs() -> Dict[str, Any]:
15-
_kwargs = {
15+
_kwargs: Dict[str, Any] = {
1616
"method": "post",
1717
"url": "/responses/unions/simple_before_complex",
1818
}

end_to_end_tests/golden-record/my_test_api_client/api/responses/text_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "post",
1414
"url": "/responses/text",
1515
}

end_to_end_tests/golden-record/my_test_api_client/api/tag1/get_tag_with_number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tag_with_number",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _get_kwargs(
1616
) -> Dict[str, Any]:
1717
headers = {}
1818

19-
_kwargs = {
19+
_kwargs: Dict[str, Any] = {
2020
"method": "post",
2121
"url": "/tests/callback",
2222
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def _get_kwargs(
8383

8484
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
8585

86-
_kwargs = {
86+
_kwargs: Dict[str, Any] = {
8787
"method": "post",
8888
"url": "/tests/defaults",
8989
"params": params,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tests/description-with-backslash",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tests/basic_lists/booleans",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tests/basic_lists/floats",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tests/basic_lists/integers",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tests/basic_lists/strings",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _get_kwargs(
5454

5555
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
5656

57-
_kwargs = {
57+
_kwargs: Dict[str, Any] = {
5858
"method": "get",
5959
"url": "/tests/",
6060
"params": params,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def _get_kwargs(
2121

2222
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
2323

24-
_kwargs = {
24+
_kwargs: Dict[str, Any] = {
2525
"method": "post",
2626
"url": "/tests/int_enum",
2727
"params": params,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _get_kwargs(
1616
) -> Dict[str, Any]:
1717
headers = {}
1818

19-
_kwargs = {
19+
_kwargs: Dict[str, Any] = {
2020
"method": "post",
2121
"url": "/tests/json_body",
2222
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tests/no_response",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
def _get_kwargs() -> Dict[str, Any]:
13-
_kwargs = {
13+
_kwargs: Dict[str, Any] = {
1414
"method": "get",
1515
"url": "/tests/octet_stream",
1616
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _get_kwargs(
1515
) -> Dict[str, Any]:
1616
headers = {}
1717

18-
_kwargs = {
18+
_kwargs: Dict[str, Any] = {
1919
"method": "post",
2020
"url": "/tests/octet_stream",
2121
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _get_kwargs(
1515
) -> Dict[str, Any]:
1616
headers = {}
1717

18-
_kwargs = {
18+
_kwargs: Dict[str, Any] = {
1919
"method": "post",
2020
"url": "/tests/post_form_data",
2121
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _get_kwargs(
1515
) -> Dict[str, Any]:
1616
headers = {}
1717

18-
_kwargs = {
18+
_kwargs: Dict[str, Any] = {
1919
"method": "post",
2020
"url": "/tests/post_form_data_inline",
2121
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _get_kwargs(
1515
) -> Dict[str, Any]:
1616
headers = {}
1717

18-
_kwargs = {
18+
_kwargs: Dict[str, Any] = {
1919
"method": "post",
2020
"url": "/tests/json_body/string",
2121
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _get_kwargs(
1616
) -> Dict[str, Any]:
1717
headers = {}
1818

19-
_kwargs = {
19+
_kwargs: Dict[str, Any] = {
2020
"method": "post",
2121
"url": "/tests/inline_objects",
2222
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _get_kwargs(
1515
cookies = {}
1616
cookies["MyToken"] = my_token
1717

18-
_kwargs = {
18+
_kwargs: Dict[str, Any] = {
1919
"method": "get",
2020
"url": "/auth/token_with_cookie",
2121
"cookies": cookies,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
def _get_kwargs() -> Dict[str, Any]:
12-
_kwargs = {
12+
_kwargs: Dict[str, Any] = {
1313
"method": "get",
1414
"url": "/tests/unsupported_content",
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _get_kwargs(
1616
) -> Dict[str, Any]:
1717
headers = {}
1818

19-
_kwargs = {
19+
_kwargs: Dict[str, Any] = {
2020
"method": "post",
2121
"url": "/tests/upload",
2222
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _get_kwargs(
1515
) -> Dict[str, Any]:
1616
headers = {}
1717

18-
_kwargs = {
18+
_kwargs: Dict[str, Any] = {
1919
"method": "post",
2020
"url": "/tests/upload/multiple",
2121
}

end_to_end_tests/golden-record/my_test_api_client/api/true_/false_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _get_kwargs(
1717

1818
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
1919

20-
_kwargs = {
20+
_kwargs: Dict[str, Any] = {
2121
"method": "get",
2222
"url": "/naming/keywords",
2323
"params": params,

integration-tests/integration_tests/api/body/post_body_multipart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _get_kwargs(
1717
) -> Dict[str, Any]:
1818
headers = {}
1919

20-
_kwargs = {
20+
_kwargs: Dict[str, Any] = {
2121
"method": "post",
2222
"url": "/body/multipart",
2323
}

integration-tests/integration_tests/api/parameters/post_parameters_header.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _get_kwargs(
2626

2727
headers["Integer-Header"] = str(integer_header)
2828

29-
_kwargs = {
29+
_kwargs: Dict[str, Any] = {
3030
"method": "post",
3131
"url": "/parameters/header",
3232
}

0 commit comments

Comments
 (0)