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
When a package imports from itself using a wildcard import, the extension tries to find an object with a '*' in its name. It can't so it fails with a KeyError.
Instead, we'll have to add a special case where wildcard imports instead create new placeholders under that module for everything that gets imported.
The text was updated successfully, but these errors were encountered:
When a package imports from itself using a wildcard import, the extension tries to find an object with a '*' in its name. It can't so it fails with a KeyError.
Instead, we'll have to add a special case where wildcard imports instead create new placeholders under that module for everything that gets imported.
The text was updated successfully, but these errors were encountered: