I have the following code:
import pygame
win = pygame.display.set_mode((600,600))
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
VS Code underlines pygame.QUIT and says: Module 'pygame' has no 'QUIT' memberpylint(no-member) The code still works so there is a quit... Any Ideas how to fix ?