This script must add red color around the grid but instead the color of the grid never updates: ``` from agents import * env = GraphicEnvironment(color = {'Wall': (255,0,0)}, display=False) env.add_walls() env.reveal() ```