Skip to content

Commit f833cfd

Browse files
committed
chore: Regen e2e and update CHANGELOG
1 parent 5a5c909 commit f833cfd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232

3333
- Parser will softly ignore value error during schema responses' status code convertion from string to integer (not a number). Errors will be reported to the end user and parsing will continue to proceed (#327).
3434
- The generated `from_dict` and `to_dict` methods of models will now properly handle `nullable` and `not required` properties that are themselves generated models (#315). Thanks @forest-benchling!
35+
- Fixed a typo in the async example in generated README.md files (#337). Thanks @synchronizing!
3536

3637
## 0.7.3 - 2020-12-21
3738

end_to_end_tests/golden-record-custom/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Or do the same thing with an async version:
3434

3535
```python
3636
from custom_e2e.models import MyDataModel
37-
from custom_e2e.async_api.my_tag import get_my_data_model
37+
from custom_e2e.api.my_tag import get_my_data_model
3838
from custom_e2e.types import Response
3939

4040
my_data: MyDataModel = await get_my_data_model.asyncio(client=client)

end_to_end_tests/golden-record/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Or do the same thing with an async version:
3434

3535
```python
3636
from my_test_api_client.models import MyDataModel
37-
from my_test_api_client.async_api.my_tag import get_my_data_model
37+
from my_test_api_client.api.my_tag import get_my_data_model
3838
from my_test_api_client.types import Response
3939

4040
my_data: MyDataModel = await get_my_data_model.asyncio(client=client)

0 commit comments

Comments
 (0)