Search code examples
pythonvisual-studio-codepylance

Expected ")" Pylance


enter image description hereI am writing a code in python(Vs code) and I have this error:

Expected ")"  Pylance 

the error occurs in: def main()
I tried to run my main and print it to my screen. I googled it and couldn't find any solutions. How can I fix that?

This is my code:

#The main driver of our code , this will handle user input and updating the graphics 
def main():  

   p.init ()
   screen = p.display.set_mode((WIDTH,HEIGHT))
   clock = p.time.Clock ()
   screen.fill(p.Color("white"))
   gs= ChessEngine.GameState()
   print(gs.board)
   loadImages() #only do this once, before the whille loop
   running=True
   while running :
    for e in p.event.get():
     if e.type == p.QUIT:
      running =False
 
   drawGameState(screen,gs)
   clock.tick(MAX_FPS)
   p.display.flip() 

 '''
Responsible for all the graphics within a currnet game state.
 '''
 def drawGameState(screen,gs):
  drawBoard (screen) #draw squars on the board
 #add in piece highlighting or move suggestions
 
 drawPieces(screen,gs.board) #draw pieces on the top of those squares

'''
draw the squares on the board the top left square is always light

'''
def drawBoard(screen):
 colors = [p.Color("white"), p.Color("gray")]
 for r in range (DIMENSION):
   for c in range (DIMENSION):
    color = colors[((r+c) % 2)]
    p.draw.rect(screen , color , p.Rect(c*SQ_SIZE,r*SQ_SIZE,SQ_SIZE_SQ_SIZE))

'''
draw the pieces on the board using the current Game.State.board
'''
def drawPieces(screen,board):
    for r in range (DIMENSION):
        for c in range (DIMENSION):
            piece=board[r][c]
            if piece != "--": #not empty squares
                screen.blit(IMAGES[piece],p.Rect(c*SQ_SIZE,r*SQ_SIZE))
 

if __name__ == '__main__':
   main()

Solution

  • p.transform.scale(p.image.load("image/" + piece + ".png"), (SQ_SIZE, SQ_SIZE)
    

    You miss a right parenthesis after (SQ_SIZE, SQ_SIZE)

    p.transform.scale(p.image.load("image/" + piece + ".png"), (SQ_SIZE, SQ_SIZE))