Skip to content

Commit ee1c1aa

Browse files
committed
Add typing.Any to kwargs in generated code
1 parent 961c6cb commit ee1c1aa

File tree

7 files changed

+18
-16
lines changed

7 files changed

+18
-16
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ By default, each auto-generated API function will look like a stub function with
235235
```python
236236
@endpoint.is_public
237237
@endpoint.post("/v1/auth/login")
238-
def login(self, *, username: str = Unset, password: str = Unset, **kwargs) -> RestResponse:
238+
def login(self, *, username: str = Unset, password: str = Unset, **kwargs: Any) -> RestResponse:
239239
"""Login"""
240240
...
241241
```
@@ -278,7 +278,7 @@ def my_decorator(f):
278278
@my_decorator
279279
@endpoint.is_public
280280
@endpoint.post("/v1/auth/login")
281-
def login(self, *, username: str = Unset, password: str = Unset, **kwargs) -> RestResponse:
281+
def login(self, *, username: str = Unset, password: str = Unset, **kwargs: Any) -> RestResponse:
282282
"""Login"""
283283
...
284284
```
@@ -416,13 +416,13 @@ class AuthAPI(DemoAppBaseAPI):
416416

417417
@endpoint.is_public
418418
@endpoint.post("/v1/auth/login")
419-
def login(self, *, username: str = Unset, password: str = Unset, **kwargs) -> RestResponse:
419+
def login(self, *, username: str = Unset, password: str = Unset, **kwargs: Any) -> RestResponse:
420420
"""Login"""
421421
...
422422

423423
@endpoint.is_public
424424
@endpoint.get("/v1/auth/logout")
425-
def logout(self, **kwargs) -> RestResponse:
425+
def logout(self, **kwargs: Any) -> RestResponse:
426426
"""Logout"""
427427
...
428428

@@ -632,7 +632,7 @@ class UsersAPI(DemoAppBaseAPI):
632632
email: Annotated[str, Format("email")] = Unset,
633633
role: Literal["admin", "viewer", "support"] = Unset,
634634
metadata: Optional[Metadata] = Unset,
635-
**kwargs,
635+
**kwargs: Any,
636636
) -> RestResponse:
637637
"""Create a new user"""
638638
...

images/generate.gif

-1.97 KB
Loading

images/update.gif

-79.6 KB
Loading

src/openapi_test_client/clients/demo_app/api/auth.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from typing import Any
2+
13
from common_libs.clients.rest_client import RestResponse
24

35
from openapi_test_client.clients.demo_app.api.base import DemoAppBaseAPI
@@ -10,12 +12,12 @@ class AuthAPI(DemoAppBaseAPI):
1012

1113
@endpoint.is_public
1214
@endpoint.post("/v1/auth/login")
13-
def login(self, *, username: str = Unset, password: str = Unset, **kwargs) -> RestResponse:
15+
def login(self, *, username: str = Unset, password: str = Unset, **kwargs: Any) -> RestResponse:
1416
"""Login"""
1517
...
1618

1719
@endpoint.is_public
1820
@endpoint.get("/v1/auth/logout")
19-
def logout(self, **kwargs) -> RestResponse:
21+
def logout(self, **kwargs: Any) -> RestResponse:
2022
"""Logout"""
2123
...

src/openapi_test_client/clients/demo_app/api/users.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Annotated, Literal
1+
from typing import Annotated, Any, Literal
22

33
from common_libs.clients.rest_client import RestResponse
44

@@ -21,13 +21,13 @@ def create_user(
2121
email: Annotated[str, Format("email")] = Unset,
2222
role: Literal["admin", "viewer", "support"] = Unset,
2323
metadata: Optional[Metadata] = Unset,
24-
**kwargs,
24+
**kwargs: Any,
2525
) -> RestResponse:
2626
"""Create a new user"""
2727
...
2828

2929
@endpoint.get("/v1/users/{user_id}")
30-
def get_user(self, user_id: int, /, **kwargs) -> RestResponse:
30+
def get_user(self, user_id: int, /, **kwargs: Any) -> RestResponse:
3131
"""Get user"""
3232
...
3333

@@ -38,18 +38,18 @@ def get_users(
3838
id: Optional[int] = Unset,
3939
email: Optional[Annotated[str, Format("email")]] = Unset,
4040
role: Optional[Literal["admin", "viewer", "support"]] = Unset,
41-
**kwargs,
41+
**kwargs: Any,
4242
) -> RestResponse:
4343
"""Get users"""
4444
...
4545

4646
@endpoint.content_type("multipart/form-data")
4747
@endpoint.post("/v1/users/images")
48-
def upload_image(self, *, file: File = Unset, description: Optional[str] = Unset, **kwargs) -> RestResponse:
48+
def upload_image(self, *, file: File = Unset, description: Optional[str] = Unset, **kwargs: Any) -> RestResponse:
4949
"""Upload user image"""
5050
...
5151

5252
@endpoint.delete("/v1/users/{user_id}")
53-
def delete_user(self, user_id: int, /, **kwargs) -> RestResponse:
53+
def delete_user(self, user_id: int, /, **kwargs: Any) -> RestResponse:
5454
"""Delete user"""
5555
...

src/openapi_test_client/libraries/api/api_functions/utils/endpoint_model.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ def generate_func_signature_in_str(model: type[EndpointModel]) -> str:
121121
signatures.append("/")
122122

123123
if any("kwargs:" in s for s in signatures):
124-
signatures.append("**kwargs_")
124+
signatures.append("**kwargs_: Any")
125125
else:
126-
signatures.append("**kwargs")
126+
signatures.append("**kwargs: Any")
127127
return ", ".join(signatures)
128128

129129

src/openapi_test_client/libraries/api/api_functions/utils/param_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def generate_imports_code_from_model(
153153
:param model: A dataclass obj
154154
:param exclude_nested_models: Skip imports for nested models (to avoid define imports for models in the same file)
155155
"""
156-
imports_code = ""
156+
imports_code = "from typing import Any\n"
157157
module_and_name_pairs = set()
158158
primitive_types = [int, float, str, bool]
159159
from openapi_test_client.libraries.api.api_client_generator import API_MODEL_CLASS_DIR_NAME

0 commit comments

Comments
 (0)