so i have an issue when running pygame in python with VS Code
import pygame
pygame.init()
The error i get is "Module ´pygame´ has no ´init´ member"
Now when I paste this code in settings.json:
"python.linting.pylintArgs": [
"--extension-pkg-whitelist=pygame"
]
I get this another error: "Missing module docstring" in the part where it says "import pygame"
Any suggestions on how to fix this would be aprreciated.
Just in case, i haven´t named my file python.py.