We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Refs: #18653
Complexity: 1
Create Issue
Install the following extension: https://marketplace.visualstudio.com/items?itemName=ms-python.pylint NOTE: Currently only pre-release version in available.
You should not have to install pylint. Just open a python file and you should see problems (if they exist). Try this for example:
pylint
import re import unittest class TestSum(unittest.TestCase): def test_sum(self): self.assertEqual(sum([1, 2, 3]), 6, "Should be 6") def test_sum_tuple(self): self.assertEqual(sum((1, 2, 3)), 6, "Should be 6") if __name__ == "__main__": unittest.main() print(x)
You should see problems, like this:
If you run into any problems, you should be able to see logs under Output > Pylint.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Refs: #18653
Complexity: 1
Create Issue
Requirements
Install the following extension: https://marketplace.visualstudio.com/items?itemName=ms-python.pylint
NOTE: Currently only pre-release version in available.
Verification
You should not have to install
pylint
. Just open a python file and you should see problems (if they exist). Try this for example:You should see problems, like this:

If you run into any problems, you should be able to see logs under Output > Pylint.
The text was updated successfully, but these errors were encountered: