Skip to content

Commit e0ab57e

Browse files
committed
small fix on rooms
1 parent 0868fe7 commit e0ab57e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name="spg",
17-
version="0.1.4",
17+
version="0.1.5",
1818
description="Simulator for Reinforcement Learning",
1919
author="Michael Garcia Ortiz",
2020
author_email="[email protected]",

src/spg/playground/room.py

+2
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ def __init__(
163163
background=None,
164164
wall_cls=ColorWall,
165165
wall_color=None,
166+
**kwargs,
166167
):
167168

168169
super().__init__(
@@ -174,4 +175,5 @@ def __init__(
174175
background=background,
175176
wall_cls=wall_cls,
176177
wall_color=wall_color,
178+
**kwargs,
177179
)

0 commit comments

Comments
 (0)