Skip to content

Commit 3970805

Browse files
committed
Add return types in generated API client code
1 parent ee1c1aa commit 3970805

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ cython_debug/
162162
.DS_Store
163163

164164
# terminalizer
165-
images/*.yml
165+
images/*
166+
!images/*.gif
166167

167168
# Unofficial tests
168169
tests/_*/**

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -326,15 +326,15 @@ from .api.users import UsersAPI
326326
class DemoAppAPIClient(OpenAPIClient):
327327
"""API client for demo_app"""
328328

329-
def __init__(self, env: str = "dev"):
329+
def __init__(self, env: str = "dev") -> None:
330330
super().__init__("demo_app", env=env, doc="openapi.json")
331331

332332
@cached_property
333-
def Auth(self):
333+
def Auth(self) -> AuthAPI:
334334
return AuthAPI(self)
335335

336336
@cached_property
337-
def Users(self):
337+
def Users(self) -> UsersAPI:
338338
return UsersAPI(self)
339339
```
340340

images/generate.gif

1.67 KB
Loading

src/openapi_test_client/clients/demo_app/demo_app_client.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ class DemoAppAPIClient(OpenAPIClient):
1616
>>> token = r.response["token"]
1717
"""
1818

19-
def __init__(self, env: str = "dev"):
19+
def __init__(self, env: str = "dev") -> None:
2020
super().__init__("demo_app", env=env, doc="openapi.json")
2121

2222
@cached_property
23-
def Auth(self):
23+
def Auth(self) -> AuthAPI:
2424
return AuthAPI(self)
2525

2626
@cached_property
27-
def Users(self):
27+
def Users(self) -> UsersAPI:
2828
return UsersAPI(self)

src/openapi_test_client/libraries/api/api_client_generator.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ def generate_api_client(temp_api_client: OpenAPIClient, show_generated_code: boo
610610
api_client_code = (
611611
f"class {api_client_class_name}({OpenAPIClient.__name__}):\n"
612612
f'{TAB}"""API client for {app_name}"""\n\n'
613-
f'{TAB}def __init__(self, env: str = "dev"):\n'
613+
f'{TAB}def __init__(self, env: str = "dev") -> None:\n'
614614
f'{TAB}{TAB}super().__init__("{app_name}", env=env, doc="{temp_api_client.api_spec.doc_path}")\n\n'
615615
)
616616

@@ -623,7 +623,9 @@ def generate_api_client(temp_api_client: OpenAPIClient, show_generated_code: boo
623623
imports_code += f"from .{API_CLASS_DIR_NAME}.{Path(mod.__file__).stem} import {api_class.__name__}\n"
624624
property_name = api_class.__name__.removesuffix("API")
625625
api_client_code += (
626-
f"{TAB}@cached_property\n{TAB}def {property_name}(self):\n{TAB}{TAB}return {api_class.__name__}(self)\n\n"
626+
f"{TAB}@cached_property\n"
627+
f"{TAB}def {property_name}(self) -> {api_class.__name__}:\n"
628+
f"{TAB}{TAB}return {api_class.__name__}(self)\n\n"
627629
)
628630

629631
code = format_code(imports_code + api_client_code)

0 commit comments

Comments
 (0)