We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
In current documentation we have something like this:
from openapi_core.contrib.falcon import FalconOpenAPIRequest from openapi_core.contrib.falcon import FalconOpenAPIResponse
But that will not work with current openapi-core version (i.e. 0.13.3).
openapi-core
0.13.3
Solution is probably to add in openapi_core.contrib.falcon something like:
openapi_core.contrib.falcon
# backward compatibility FalconOpenAPIRequest = FalconOpenAPIRequestFactory.create FalconOpenAPIResponse = FalconOpenAPIResponseFactory.create
(so, similar to Flask's factories)
Or simply fix documentation.
The text was updated successfully, but these errors were encountered:
#233 fixes the documentation, FYI
Sorry, something went wrong.
Thank you very much!
No branches or pull requests
In current documentation we have something like this:
But that will not work with current
openapi-core
version (i.e.0.13.3
).Solution is probably to add in
openapi_core.contrib.falcon
something like:(so, similar to Flask's factories)
Or simply fix documentation.
The text was updated successfully, but these errors were encountered: