-
Notifications
You must be signed in to change notification settings - Fork 14
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
No links to items in summary tables when using __init__.py imports #65
Comments
hey @raymanP! I wonder what you get with
Could you please try? I wonder whether this could be related to what I observed quite some time ago in sphinx-doc/sphinx#9069 |
hey @Chilipp! Thank you for your fast reply! This also produces an entry without a link. Classes in the same module which are not in the __init__.py are linked correctly. |
hey @raymanP! thanks for the confirmation! this is what I expected. It's an upstream issue in autosummary, sphinx-doc/sphinx#9069. It would work, if you import |
Great to know.. Thank you @Chilipp! Then I will wait for the upstream fix. :) |
Then we can close this here. Have a nice day ;) |
Hi dears,
if having an module import in __init__.py the links are missing for the class.
Sphinx is showing the links correctly, .e.g. for :meth:`mymodule.myclass.mymethod` for the below example.
Example:
mymodule/__init__.py
from mymodule.mysubmodule import myclass
mymodule/mysubmodule.py
The text was updated successfully, but these errors were encountered: