I made code to draw 2 lines, but, it only draws the first line to the window. However, everything else on the window works fine and it is always updating and responding.
Relevant Code:
WINDOW = pygame.display.set_mode((1000,800), pygame.FULLSCREEN)
while True:
WINDOW.fill((0,0,0))
pygame.draw.line(WINDOW, (255,255,255), (0,0),(0,799))
pygame.draw.line(WINDOW, (255,255,255), (999,0),(999,799))
pygame.display.update()