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
If you import something in multiple steps you get an error like "WARNING: Cannot resolve import of $BLAH in $BAR [autoapi.python_import_resolution]". More specifically I'm refering to a scenario like this:
mypack.mod1:
from pathlib import Path
mypack.mod2:
from .mod1 import Path
This is arguably a bad practice and some linters complain about it but it would be nice if it worked.
The text was updated successfully, but these errors were encountered:
If you import something in multiple steps you get an error like "WARNING: Cannot resolve import of $BLAH in $BAR [autoapi.python_import_resolution]". More specifically I'm refering to a scenario like this:
mypack.mod1:
mypack.mod2:
This is arguably a bad practice and some linters complain about it but it would be nice if it worked.
The text was updated successfully, but these errors were encountered: