Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python: Removes the _async suffix where is not needed #4735

Merged
8 changes: 8 additions & 0 deletions python/DEV_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ You can also run all the tests together under the [tests](tests/) folder.

## Tools and scripts

## Implementation Decisions

### Asynchronous programming

It's important to note that most of this library is written with asynchronous in mind. The
developer should always assume everything is asynchronous. One can use the function signature
with either `async def` or `def` to understand if something is asynchronous or not.

## Pydantic and Serialization

[Pydantic Documentation](https://docs.pydantic.dev/1.10/)
Expand Down
131 changes: 113 additions & 18 deletions python/notebooks/05-using-the-planner.ipynb

Large diffs are not rendered by default.

Loading
Loading