Skip to content

Commit 2c4524f

Browse files
Fix failing tests
1 parent f595b39 commit 2c4524f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎mdp_playground/spaces/image_multi_discrete.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ def sample(self):
291291
def __repr__(self):
292292
return (
293293
"{} with multi-discrete space of shape: {} and "
294-
"images of resolution: {} and dtype: {}".format(
295-
self.__class__, self.state_space_sizes, self.shape, self.dtype
294+
"images of resolution: {} x {} and dtype: {}".format(
295+
self.__class__, self.state_space_sizes, self.width, self.height, self.dtype
296296
)
297297
)
298298

0 commit comments

Comments
 (0)