-
Notifications
You must be signed in to change notification settings - Fork 147
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
pyright complain "component" is not exported from module "solara" #465
Comments
I think adding the following to "python.analysis.packageIndexDepths": [
{
"name": "",
"depth": 5
}
], |
I have the same issue (with pylance) unfortunately @Lundez' fix doesnt seem to help adding |
@Jhsmit true, an explicit from solara.core import component
@component
def MyComponent():
... A bit more work, but acceptable at least in my use case. There are |
pyright complains
"component" is not exported from module "solara"
for the following code, line 3turns out it is not a false alarm, see microsoft/pyright#5929
so I guess instead of
it could be updated to re-exported using the redundant form to make pyright happy
The text was updated successfully, but these errors were encountered: