Search code examples
pythonvisual-studio-codepylint

pylint no member issue but code still works vscode


I have a very simple code here

import torch

l = torch.nn.Linear(2,5)
v = torch.FloatTensor([1, 2])
print(l(v))

under torch.FloatTensor, pylint in visual studio code claims that 'Module torch has no 'FloatTensor' member pylint(no-member).

However, the code works fine. Is this a false positive? How can I disable pylint for this specific instance?


Solution

    1. Press: CTRL + Shift + P

    2. Click on "Preferences: Open Settings (JSON)"

    3. Add this line into JSON : "python.linting.pylintArgs": ["--generated-members", "from_json,query"]