Browse Source

Removed unused var

Maxime Chevalier-Boisvert 6 years ago
parent
commit
8cc5a5219f
1 changed files with 0 additions and 2 deletions
  1. 0 2
      gym_minigrid/minigrid.py

+ 0 - 2
gym_minigrid/minigrid.py

@@ -556,8 +556,6 @@ class Grid:
         Produce a compact numpy encoding of the grid
         """
 
-        codeSize = self.width * self.height * 3
-
         array = np.zeros(shape=(self.width, self.height, 3), dtype='uint8')
 
         for j in range(0, self.height):