We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sphinx (using intersphinx) can't find some classes from your objects.inv, resulting in
WARNING: py:class reference target not found: flask_restplus.api.Api
because it is referenced as flask_restplus.Api and not flask_restplus.api.Api in the objects.inv
flask_restplus.Api
flask_restplus.api.Api
This can be worked around by assigning the __module__ property of classes imported in any __init__.py. See also http://stackoverflow.com/a/24787344
__module__
__init__.py
The text was updated successfully, but these errors were encountered:
See sphinx-doc/sphinx#5603
Sorry, something went wrong.
Closing in favor of issue in sphinx (mentioned above)
No branches or pull requests
Sphinx (using intersphinx) can't find some classes from your objects.inv, resulting in
because it is referenced as
flask_restplus.Api
and notflask_restplus.api.Api
in the objects.invThis can be worked around by assigning the
__module__
property of classes imported in any__init__.py
. See also http://stackoverflow.com/a/24787344The text was updated successfully, but these errors were encountered: