-
Notifications
You must be signed in to change notification settings - Fork 770
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
[feature request] Add Quick-Fix for misspelled APIs, e.g., Module 're' has no 'findAll' member; maybe 'findall'? Pylint E1101:no-member
#6960
Comments
The current |
The replacement behavior suggested here is usually instant, with other language extensions. |
Even though the error is from |
Related: microsoft/vscode-mypy#345 |
Pylance has a spelling suggestion code action (see below), but it seems to only work in certain scenarios. For example, it didn't work for the |
Problem
Extension users have to manually correct misspelled APIs, .e.g,
Module 're' has no 'findAll' member; maybe 'findall'? Pylint E1101:no-member
Desired Solution
There is an option in the
Quick Fix...
dropdown in VSCode that automatically suggests the appropriate APIs, likefindall
in the above example.The text was updated successfully, but these errors were encountered: