You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The src/examples/server/pets.py file contains stubs for all the functions corresponding to the the operation IDs as defined in the petstore.yaml specification. However, only find_pets_by_status has any implementation, while all others just have pass, meaning that they would in most cases cause a validation error when sending a response.
A good first issue would be to implement those remaining functions in line with the responses specified in the petstore.yaml, with correct response codes and contents (if any).
The text was updated successfully, but these errors were encountered:
The src/examples/server/pets.py file contains stubs for all the functions corresponding to the the operation IDs as defined in the petstore.yaml specification. However, only
find_pets_by_status
has any implementation, while all others just havepass
, meaning that they would in most cases cause a validation error when sending a response.A good first issue would be to implement those remaining functions in line with the responses specified in the
petstore.yaml
, with correct response codes and contents (if any).The text was updated successfully, but these errors were encountered: